From 49c08ddbc970b1a25b338b43f3e7796a5756c063 Mon Sep 17 00:00:00 2001 From: DustInDark Date: Mon, 20 Dec 2021 00:42:46 +0900 Subject: [PATCH] changed output message by change option name --- src/detections/configs.rs | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/src/detections/configs.rs b/src/detections/configs.rs index 0e1281e8..269e8b8f 100644 --- a/src/detections/configs.rs +++ b/src/detections/configs.rs @@ -140,8 +140,7 @@ impl TargetEventTime { Err(err) => { AlertMessage::alert( &mut std::io::stderr().lock(), - format!("starttimeline field: {}", err), - false + format!("start-timeline field: {}", err), ) .ok(); None @@ -158,8 +157,7 @@ impl TargetEventTime { Err(err) => { AlertMessage::alert( &mut std::io::stderr().lock(), - format!("endtimeline field: {}", err), - false + format!("end-timeline field: {}", err), ) .ok(); None