chore: fix log name

This commit is contained in:
Jesús Pérez Lorenzo 2021-09-16 22:25:33 +01:00
parent 5af9e65b7a
commit b5685bbe40

View File

@ -205,6 +205,7 @@ pub struct Config {
pub logs_store: DataStore,
pub logs_path: String,
pub logs_format: String,
pub state_path: String,
pub run_schedtasks: bool,
pub schedtasks: Vec<SchedTask>,
pub run_websrvrs: bool,
@ -242,6 +243,7 @@ impl Config {
app_cfg.cache_lock_path=format!("{}/{}",&app_home,&app_cfg.cache_lock_path);
app_cfg.check_path=format!("{}/{}",&app_home,&app_cfg.check_path);
app_cfg.monitor_rules_path=format!("{}/{}",&app_home,&app_cfg.monitor_rules_path);
app_cfg.state_path=format!("{}/{}",&app_home,&app_cfg.state_path);
// let mut schedtasks: Vec<SchedTask> = Vec::new();
// app_cfg.schedtasks.iter().enumerate().for_each(|(pos,it)| {