Merge remote-tracking branch 'origin/main' into shell-cmd-executor
This commit is contained in:
@ -1,13 +1,25 @@
|
||||
use once_cell::sync::OnceCell;
|
||||
use ops_sat_rs::config::LOG_FOLDER;
|
||||
use std::path::{Path, PathBuf};
|
||||
|
||||
use ops_sat_rs::config::LOG_FOLDER;
|
||||
pub static LOGFILE_PATH: OnceCell<PathBuf> = OnceCell::new();
|
||||
|
||||
pub fn setup_logger() -> Result<(), fern::InitError> {
|
||||
if !Path::new(LOG_FOLDER).exists() && std::fs::create_dir_all(LOG_FOLDER).is_err() {
|
||||
eprintln!("Failed to create log folder '{}'", LOG_FOLDER);
|
||||
}
|
||||
let mut path_buf = PathBuf::from(LOG_FOLDER);
|
||||
path_buf.push("output.log");
|
||||
path_buf.push(
|
||||
format!(
|
||||
"output_{}.log",
|
||||
humantime::format_rfc3339_seconds(std::time::SystemTime::now())
|
||||
)
|
||||
.replace(':', "_"),
|
||||
);
|
||||
println!("Creating logfile {:?}", path_buf);
|
||||
LOGFILE_PATH
|
||||
.set(path_buf.clone())
|
||||
.expect("Error setting global logfile path");
|
||||
fern::Dispatch::new()
|
||||
.format(move |out, message, record| {
|
||||
out.finish(format_args!(
|
||||
|
Reference in New Issue
Block a user