From 17078c34d897b8217cc954e5cd9f3ce06443ba7e Mon Sep 17 00:00:00 2001 From: Raffi Khatchadourian Date: Fri, 3 May 2019 16:35:31 -0400 Subject: [PATCH] Keywords. #206 --- .../src/edu/cuny/hunter/log/core/analysis/LogAnalyzer.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/edu.cuny.hunter.log.core/src/edu/cuny/hunter/log/core/analysis/LogAnalyzer.java b/edu.cuny.hunter.log.core/src/edu/cuny/hunter/log/core/analysis/LogAnalyzer.java index e990d682..319bbe78 100644 --- a/edu.cuny.hunter.log.core/src/edu/cuny/hunter/log/core/analysis/LogAnalyzer.java +++ b/edu.cuny.hunter.log.core/src/edu/cuny/hunter/log/core/analysis/LogAnalyzer.java @@ -69,7 +69,7 @@ public class LogAnalyzer extends ASTVisitor { * A set of keywords in log messages. */ private final Set KEYWORDS_IN_LOG_MESSAGES = Stream.of("fail", "disable", "error", "exception", "collision", - "reboot", "terminate", "throw", "shut", "start", "shut", "run", "deprecate", "kill").collect(Collectors.toSet()); + "reboot", "terminate", "throw", "start", "shut", "run", "deprecate", "kill", "finish", "ready", "wait").collect(Collectors.toSet()); private boolean test;