i static method

dynamic i(
  1. dynamic tag,
  2. dynamic msg
)

static method to print debug logs of eventizer Package format is simple time, type of tag or tag if it is strign, message msg

Implementation

static i(dynamic tag, dynamic msg) {
  if ((Log.Info <= kLogDebugLevel)) {
    print(
        '$_magentaColorCode${_curTime()}: $_greyColorCode${_getTag(tag)}:\t${_getMsg(msg)}$_resetColorCode');
  }
}