1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#![deny(
missing_docs,
trivial_casts,
trivial_numeric_casts,
unused_extern_crates,
unused_import_braces,
unused_results
)]
use simplelog::{ConfigBuilder, LevelFilter, SimpleLogger};
use std::sync::Once;
pub mod average;
pub mod fmt;
pub mod platform;
pub mod signals;
pub const APOLLO_VERSION: &str = "DEVELOPMENT-SNAPSHOT";
pub const APOLLO_REVISION: &str = "NO-REVISION";
pub fn init_logging() {
static INIT_LOGGING: Once = Once::new();
static DATE_FORMAT: &str = "[%Y-%m-%dT%H:%M:%S%.3f]";
INIT_LOGGING.call_once(|| {
if let Err(error) = SimpleLogger::init(
LevelFilter::Debug,
ConfigBuilder::new()
.set_time_format_str(DATE_FORMAT)
.set_thread_level(LevelFilter::Trace)
.set_target_level(LevelFilter::Error)
.set_location_level(LevelFilter::Trace)
.build(),
) {
panic!("Failed to initialize logging system: {}", error);
}
});
}