Crates.io | minifemme |
lib.rs | minifemme |
version | 1.0.3 |
source | src |
created_at | 2021-07-21 12:11:34.115617 |
updated_at | 2021-07-21 12:18:25.269368 |
description | Rust log-compatible pretty/ndjson logger, based on femme |
homepage | |
repository | https://git.sr.ht/~ana/minifemme |
max_upload_size | |
id | 425489 |
size | 788,902 |
Rust log-compatible pretty/ndjson logger, based on femme.
A pretty-printer and ndjson logger for the log crate.
minifemme::start(minifemme::LevelFilter::Trace, minifemme::LogMode::Pretty);
log::warn!("Unauthorized access attempt on /login");
log::info!("Listening on port 8080");
The main reason behind this crate's existence is that I needed something that works
almost like femme
, but with the ability to arbitrarily select the log mode.
When using Wasm with #[cfg(target_arch = "wasm32")]
, the Wasm logger will be used.
The Wasm logger uses web_sys
crate to send console.log()
to JavaScript.
$ cargo add minifemme
MIT OR Apache-2.0