dumb_logger 0.1.0

Log to stdout, nothing more
Documentation
  • Coverage
  • 100%
    4 out of 4 items documented2 out of 4 items with examples
  • Size
  • Source code size: 5.2 kB This is the summed size of all the files inside the crates.io package for this release.
  • Documentation size: 1.09 MB This is the summed size of all files generated by rustdoc for all configured targets
  • Ø build duration
  • this release: 10s Average build duration of successful builds.
  • all releases: 10s Average build duration of successful builds in releases after 2024-10-23.
  • Links
  • ericseppanen/dumb_logger
    0 0 0
  • crates.io
  • Dependencies
  • Versions
  • Owners
  • ericseppanen

dumb_logger is a minimal logging module.

It allows you to use the log macros error!, warn!, info!, debug! and trace! to print to stdout.

It has no dependencies other than log. It doesn't print timestamps or sequence numbers or print in color. It just prints the message that was logged.

How to use it:

use log::trace;
dumb_logger::init();
trace!("hello world");