A Flutter logger plugin.
dependencies:
r_logger:
the first use this plugin , your need to init.
import 'packages:r_logger/r_logger.dart';
// [isWriteFile] can null,if you want to write log set to true,default false.
// [tag] can null.default RLogger.
// [filePath] not null your file path.
// [fileName] can null. default yyyy_MM_dd.
RLogger.initLogger(tag:'your tag',isWriteFile:true,filePath:'your file path',fileName:'your file name');
print debug you can use.
RLogger.instance?.d('Message');
print info you can use.
RLogger.instance?.i('Message');
print json you can use.
RLogger.instance?.j('{"msg":"ok"}');
print error you can use.
RLogger.instance?.e('message', error,stackTrace);
add listener
RLogger.instance?.listen((data){
// logger data
});