logly 0.3.1+readme3 copy "logly: ^0.3.1+readme3" to clipboard
logly: ^0.3.1+readme3 copied to clipboard

A simple logging tool that uses color coding to indicate severity and offers a clickable link to the printing line.

example/example.dart

import 'package:logly/logly.dart';

void main() {
  // By default the level `LogLevel.INFO` is used. To use that, just call
  // `log` on its own.
  log("This is a log entry.");

  // All levels may also be called explicitly using their respective
  // functions:
  log.shout("This is a shout, the highest possible severity level.");
  log.warning("This is a warning.");
  log.severe("This is a severe log entry.");
  log.fine("This is a fine-level log entry.");
  log.finer("This is a finer-level log entry.");
  log.finest("This is a finest-level log entry.");
  log.config("This is a config log entry.");
  log.info("This is the common info-level log entry.");
}
4
likes
140
pub points
36%
popularity

Publisher

unverified uploader

A simple logging tool that uses color coding to indicate severity and offers a clickable link to the printing line.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

logging

More

Packages that depend on logly