chore: eprintln for Deserialize not defined
This commit is contained in:
parent
313e3788df
commit
a364d270ed
@ -259,8 +259,11 @@ where D: Deserializer<'de> {
|
|||||||
"Service" => RuleContext::Service(v[1].to_owned()),
|
"Service" => RuleContext::Service(v[1].to_owned()),
|
||||||
"Server" => RuleContext::Server(v[1].to_owned()),
|
"Server" => RuleContext::Server(v[1].to_owned()),
|
||||||
"Ip" => RuleContext::Ip(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 {
|
} else {
|
||||||
Ok(RuleContext::None)
|
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()),
|
"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()),
|
"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()),
|
"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
|
||||||
|
}
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user