1 2 3 4 5 6 7 8 9 10 11 12 13
use std::sync::{Once, ONCE_INIT}; extern crate env_logger; static INIT: Once = ONCE_INIT; pub fn setup() { INIT.call_once(|| { env_logger::Builder::from_default_env() .default_format_timestamp_nanos(true) .init(); }); }