From c25fa6cb0ded891ae07062f7d91902e71f660351 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Wed, 27 May 2026 22:30:15 +0200 Subject: [PATCH] fix(log-detective): do not log missing run as error Fixes #3135 Signed-off-by: Matej Focko --- packit_service/worker/parser.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packit_service/worker/parser.py b/packit_service/worker/parser.py index f0ae69979..9a58f9db1 100644 --- a/packit_service/worker/parser.py +++ b/packit_service/worker/parser.py @@ -1922,7 +1922,7 @@ def parse_logdetective_analysis_event(event) -> Optional[logdetective.Result]: analysis_id=analysis_id ) if not log_detective_run: - logger.error( + logger.info( f"Received results Log Detective analysis: '{analysis_id}' " "but no analysis with this id was requested." )