chore: eprintln for Deserialize not defined

This commit is contained in:
Jesús Pérez Lorenzo 2021-09-17 01:48:16 +01:00
parent 313e3788df
commit a364d270ed

View File

@ -259,8 +259,11 @@ where D: Deserializer<'de> {
"Service" => RuleContext::Service(v[1].to_owned()),
"Server" => RuleContext::Server(v[1].to_owned()),
"Ip" => RuleContext::Ip(v[1].to_owned()),
_ => RuleContext::None
"None"|"" => RuleContext::None,
_ => {
eprintln!("rulecontext not defined for: {} use None",v[0]);
RuleContext::None
}
})
} else {
Ok(RuleContext::None)
@ -280,7 +283,11 @@ where D: Deserializer<'de> {
"Stop" => MonitorAction::Stop(arg[0].to_owned(),arg[1].to_owned(),arg[2].to_owned()),
"Restart" => MonitorAction::Restart(arg[0].to_owned(),arg[1].to_owned(),arg[2].to_owned()),
"Notify" => MonitorAction::Notify(arg[0].to_owned(),arg[1].to_owned(),arg[2].to_owned()),
_ => MonitorAction::None
"None"|"" => MonitorAction::None,
_ => {
eprintln!("monitor action not defined for: {} use None",v[0]);
MonitorAction::None
}
})
}
}