From 4b80dc63f8dc7c80bbb58d5520a45b44fdb12936 Mon Sep 17 00:00:00 2001 From: DastInDark <2350416+hitenkoku@users.noreply.github.com> Date: Fri, 9 Sep 2022 12:47:18 +0900 Subject: [PATCH] changed allrecordinfo data separator to broken pipe --- src/detections/utils.rs | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/src/detections/utils.rs b/src/detections/utils.rs index b4b262a0..c2eee8d8 100644 --- a/src/detections/utils.rs +++ b/src/detections/utils.rs @@ -300,12 +300,7 @@ fn create_recordinfos(record: &Value) -> String { .map(|(key, value)| format!("{}: {}", key, value)) .collect(); - // 標準出力する時はセルがハイプ区切りになるので、パイプ区切りにしない - if configs::CONFIG.read().unwrap().args.output.is_some() { - summary.join(" ‖ ") - } else { - summary.join("‖") - } + summary.join(" ¦ ") } /**