customLog function

void customLog(
  1. int level,
  2. String tag,
  3. String message
)

Implementation

void customLog(int level, String tag, String message) {
  // 直接打印日志
  _printLog(level, tag, message);
}