From bef9d3b2771423260c0862ff43f67c026fcbf31b Mon Sep 17 00:00:00 2001 From: Peter Burns Date: Tue, 29 Aug 2023 18:58:23 -0700 Subject: [PATCH] Add another uninteresting event to watch logger. --- src/logging/watch-logger.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/logging/watch-logger.ts b/src/logging/watch-logger.ts index 392d81770..974607c89 100644 --- a/src/logging/watch-logger.ts +++ b/src/logging/watch-logger.ts @@ -65,7 +65,8 @@ export class WatchLogger implements Logger { case 'failed-previous-watch-iteration': case 'watch-run-start': case 'start-cancelled': - case 'locked': { + case 'locked': + case 'analysis-completed': { return false; } }