mixin_logger 0.1.3 
mixin_logger: ^0.1.3 copied to clipboard
Simple logger tool for flutter, make it easy to save your app log to file.
mixin_logger #
Simple logger tool for flutter.
Features #
Print log #
void main() {
  v('verbose message');
  d('debug message');
  i('info message');
  w('warning message');
  e('error message');
  wtf('wtf message');
}
Save log to file. #
void main() {
  // init logger with dir. then all logs will be saved to this dir.
  await initLogger(
    '/tmp/app_log_files_dir',
    maxFileCount: 10, // max 10 files.
    maxFileLength: 5 * 1024 * 1024, // max to 5 MB for single file.
  );
  i('after initLogger');
}
The folder is created automatically:
pwd
/tmp/app_log_files_dir
cat log_0.log
2022-08-26 12:41:00.623 [I] after initLogger
License #
see LICENSE