platform/packages/pretty_logging
2021-05-14 18:45:55 +08:00
..
example Published angel3_pretty_logging 2021-05-14 11:49:34 +08:00
lib Published angel3_pretty_logging 2021-05-14 11:49:34 +08:00
.gitignore Published angel3_pretty_logging 2021-05-14 11:49:34 +08:00
analysis_options.yaml Add 'packages/pretty_logging/' from commit 'd5150f9dee0969e66af0aecae17d0bbdaf2b44cf' 2020-02-15 18:28:16 -05:00
AUTHORS.md Published angel3_pretty_logging 2021-05-14 11:49:34 +08:00
CHANGELOG.md Fixed pretty_logging 2021-05-14 18:45:55 +08:00
LICENSE Published angel3_pretty_logging 2021-05-14 11:49:34 +08:00
pubspec.yaml Fixed pretty_logging 2021-05-14 18:45:55 +08:00
README.md Publish angel3_framework 2021-05-14 18:34:09 +08:00

pretty_logging

version Null Safety

License

Standalone helper for colorful logging output, using pkg:io AnsiCode.

Installation

In your pubspec.yaml:

dependencies:
  angel3_pretty_logging: ^3.0.0

Usage

Basic usage is very simple:

myLogger.onRecord.listen(prettyLog);

However, you can conditionally pass logic to omit printing an error, provide colors, or to provide a custom print function:

var pretty = prettyLog(
  logColorChooser: (_) => red,
  printFunction: stderr.writeln,
  omitError: (r) {
    var err = r.error;
    return err is AngelHttpException && err.statusCode != 500;
  },
);
myLogger.onRecord.listen(pretty);