diff --git a/TODO b/TODO index e77f9b0..7978bc1 100644 --- a/TODO +++ b/TODO @@ -1 +1,3 @@ -Log filtering rules in config file. For `Trace`s, `Level`s, sublevels, etc. \ No newline at end of file +Log filtering rules in config file. For `Trace`s, `Level`s, sublevels, etc. +Log normalise source path in terminal print +Log change system. Use `Log` trait that we can define different printers for terminal, logfile, etc diff --git a/src/main.rs b/src/main.rs index 021303f..8bb3e04 100644 --- a/src/main.rs +++ b/src/main.rs @@ -85,7 +85,7 @@ fn print_stats() use std::ops::Deref; status!("This is the lolicron daemon version {} by {} ({} build)", env!("CARGO_PKG_VERSION"), &AUTHORS[..], BUILD_IDENT.deref()); status!("---"); - status!("Compiled with ({}, {}, {}, {}):", "on".bright_red(), "default on".red(), "off".bright_blue(), "default off".blue()); + status!("Compiled with ({} ({}), {} ({})):", "on".bright_red(), "default".red(), "off".bright_blue(), "default".blue()); #[cfg(nightly)] status!(" +nightly".bright_red()); #[cfg(debug_assertions)] status!(" +debug_assertions".red());