logI function
Level: Info
Implementation
logI(msg, {String? tag}) {
if (JsLogger._logProxy != null) {
JsLogger._logProxy!(tag, msg);
} else if (JsLogger.isInited) {
JsLogger.logger?.info(_makeMsg(msg, tag));
} else if (kDebugMode) {
print(_makeMsg(msg, tag));
}
}