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