Add config option for log timestamp format

This commit is contained in:
Jeremy Lin
2020-07-22 21:50:49 -07:00
parent 11845d9f5b
commit d348f12a0e
3 changed files with 8 additions and 2 deletions

View File

@ -130,8 +130,8 @@ fn init_logging(level: log::LevelFilter) -> Result<(), fern::InitError> {
if CONFIG.extended_logging() {
logger = logger.format(|out, message, record| {
out.finish(format_args!(
"{}[{}][{}] {}",
chrono::Local::now().format("[%Y-%m-%d %H:%M:%S]"),
"[{}][{}][{}] {}",
chrono::Local::now().format(&CONFIG.log_timestamp_format()),
record.target(),
record.level(),
message