e static method

dynamic e(
  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 e(dynamic tag, dynamic msg) {
  if (Log.Error <= kLogDebugLevel) {
    print(
        '$_magentaColorCode${_curTime()}: $_redColorCode${_getTag(tag)}:\t${_getMsg(msg)}$_resetColorCode');
  }
}