From 2d1da832406692987d44e1a31075038ee81f609b Mon Sep 17 00:00:00 2001 From: xxxx2077 <13712052798@163.com> Date: Fri, 7 Mar 2025 15:32:27 +0800 Subject: [PATCH] fix bug --- logparser/Logram/src/Common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/logparser/Logram/src/Common.py b/logparser/Logram/src/Common.py index a1d97e43..d42444aa 100644 --- a/logparser/Logram/src/Common.py +++ b/logparser/Logram/src/Common.py @@ -15,7 +15,7 @@ def preprocess(logLine, specialRegex): line = logLine for regex in specialRegex: - line = re.sub(regex, "<*>", " " + logLine) + line = re.sub(regex, "<*>", " " + line) return line