一款彩色的Log日志输出工具。
English | 中文
打开pubspec.yaml
# 远程依赖方式dependencies:
colorful_log: ^0.0.1# 本地依赖方式dependencies:
colorful_log:
path: PathOfProject# git方式dependencies:
colorful_log:
git:
url: git://github.com/EngrZhou/ColorfulLog.git///是否使用彩色log样式 true:使用 false:不使用Log.setColorful(false);
///设置log输出级别Log.setLogLevel(Log.warn);///as android usual styleLog.V(tag, 'This is VERBOSE level colorful Log with custom tag.');
///as dartLog.i(tag: tag, msg:'This is INFO level colorful Log with custom tag.');
///as dartLog.d(msg:'This is DEBUG level colorful Log with none tag.');