ndjsonloggercore 0.1.0

ndjsonloggercore
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
#![no_std]

mod logger;
pub use logger::{log, Atom, Entry, Level, Outputter, Value};

// Primative to string functions
mod conv;

#[cfg(feature = "std")]
mod stdfeatures;
#[cfg(feature = "std")]
pub use stdfeatures::{stdout_log, StdoutOutputter};