From a364d270eda3a0a132d18ba5a9b1913410072616 Mon Sep 17 00:00:00 2001 From: JesusPerez Date: Fri, 17 Sep 2021 01:48:16 +0100 Subject: [PATCH] chore: eprintln for Deserialize not defined --- src/monitor/defs.rs | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/src/monitor/defs.rs b/src/monitor/defs.rs index a422d2a..3e20155 100644 --- a/src/monitor/defs.rs +++ b/src/monitor/defs.rs @@ -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 + } }) } }