mixin_logger 0.0.1 copy "mixin_logger: ^0.0.1" to clipboard
mixin_logger: ^0.0.1 copied to clipboard

outdated

Simple logger tool for flutter.

mixin_logger #

Simple logger tool for flutter.

Features #

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.
  initLogger(
    'app_log_files_dir',
    maxFileCount: 10, // max 10 files.
    maxFileLength: 5 * 1024 * 1024, // max to 5 MB for single file.
  );
}

License #

see LICENSE

12
likes
0
points
1.17k
downloads

Publisher

verified publishermixin.dev

Weekly Downloads

Simple logger tool for flutter.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

ansicolor, flutter, intl, path

More

Packages that depend on mixin_logger