enableDebugPrint static method

void enableDebugPrint()
  • 如果希望输出日志,需要调用一次MyLogger.enableDebugPrint()
  • 当然也可以自己通过listenLog监听处理日志

Implementation

static void enableDebugPrint() {
  if (Platformxx_c.isDebugMode) {
    listenLog((item) {
      // ignore: avoid_print
      print(item.toString());
    });
  }
}