flutter 日志工具类
Posted loaderman
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了flutter 日志工具类相关的知识,希望对你有一定的参考价值。
class LogUtils
//dart.vm.product
环境标识位 Release为true debug 为false static const bool isRelease = const bool.fromEnvironment("dart.vm.product"); static void d(String tag, Object message) if (!isRelease) _printLog(tag, ‘D -> ‘, message); static void i(String tag, Object message) _printLog(tag, ‘I -> ‘, message); static void e(String tag, Object message, Exception e) _printLog(tag, ‘E -> ‘, message); static void _printLog(String tag, String level, Object message) StringBuffer sb = new StringBuffer(); sb..write(level)..write(tag ?? ‘‘)..write(‘: ‘)..write(message); print(sb.toString());
以上是关于flutter 日志工具类的主要内容,如果未能解决你的问题,请参考以下文章