customDebugPrint method

void customDebugPrint(
  1. String message
)

打印日志 会发送给web; 解决release包中的debugPrint无法打印问题

Implementation

void customDebugPrint(String message) {
  LogWatcherController.instance.customDebugPrint(message);
}