jetlog ยท Test Status Code Coveraege

Fast, structured, leveled logging for Dart.

jetlog's API is designed to provide great development experience without losing performance. jetlog allows to format logging records into different representations and supports formatting to JSON and text out of the box.

There are a couple of features developer may benefit from:

  • Blazing fast logging
  • Efficient logging of structured data (with support to lazy evaluation)
  • Unambiguous support for loggers hierarchy
  • Exchangeable logging handlers
  • Logging filters

Installation

To get mostly up to date package install it through pub.

pub get jetlog

Getting started

The easiest way to get up and running is to use global logger provided in global_logger package library.

import 'package:jetlog/global_logger.dart' as logger;
import 'package:jetlog/jetlog.dart' as log show Str;

void main() async {
  logger.bind({
    const log.Str('hello', 'world')
  }).info('Greeting');
}

// => '2019-06-27 15:37:38.046859 [INFO]: Greeting hello=world'

License

Released under the MIT license.

Libraries

jetlog
Package library jetlog provides fast, structured, leveled logger.
filters
This package library provides predefined filters to conditionally filter logging records.
formatters
global_logger
This package library provides a global logger.
handlers
This package library provides a set of logging record handlers such as ConsoleHandler, MemoryHandler, StreamHandler and MultiHandler.