Simple, efficient logging for [Rust].
Logging configuration is infinitely branched, like a fern: formatting, filters, and output are all controlled for any increasingly specific set of parameters. Fern provides a builder-based configuration and implementation for rust's standard [log
] crate.
```rust //! With fern, we can:
// Configure logger at runtime fern::Dispatch::new() // Perform allocation-free log formatting .format(|out, message, record| { out.finish(formatargs!( "{}[{}][{}] {}", chrono::Local::now().format("[%Y-%m-%d][%H:%M:%S]"), record.target(), record.level(), message )) }) // Add blanket level filter - .level(log::LevelFilter::Debug) // - and per-namespace overrides .levelfor("hyper", log::LevelFilter::Info) // Output to stdout, files, and other Dispatch configurations .chain(std::io::stdout()) .chain(fern::log_file("output.log")?) // Apply globally .apply()?;
// and log using log crate macros! info!("helllo, world!"); ```
More contrived, and useful, examples at the api docs
and the example command line program.
The fern
project is primarily maintained by @daboross on github. It's a hobby project, but one I aim to keep at a high quality.
As this is a hobby project, contributions are very welcome!
The easiest way for you to contribute right now is to use fern
in your application, and see where it's lacking. The current library has a solid base, but it lacks features, and I may not anticipate your use cases.
If you have a use case fern
does not cover, please file an issue. This is immensely useful to me, to anyone wanting to contribute to the project, and to you as well if the feature is implemented.
If you're interested in helping fix an existing issue, or an issue you just filed, help is always welcome.
See CONTRIBUTING for technical information on contrbuting.