cherrilog 0.3.1 copy "cherrilog: ^0.3.1" to clipboard
cherrilog: ^0.3.1 copied to clipboard

Perhaps the simplest and most useful log library for dart. Lightweight and easy to apply.

example/cherrilog_example.dart

import 'package:cherrilog/cherrilog.dart';

void main() {
  CherriLog.init(
    options: CherriOptions()
      ..logLevelRange = CherriLogLevelRanges.all
      ..useBuffer = false,
  ).logTo(CherriConsole()); // Use `CherriFile()` instead of `CherriConsole` if you want to log to file system

  debug('You are doing something right');

  info('You are doing something');

  warning('You are doing something wrong');

  error('You can not shutdown power');

  fatal('The power is off');
}
8
likes
135
points
94
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Perhaps the simplest and most useful log library for dart. Lightweight and easy to apply.

Repository (GitHub)
View/report issues

Topics

#logging #utility

License

LGPL-2.1 (license)

Dependencies

dart_art, intl, stack_trace

More

Packages that depend on cherrilog