From f3cce67c270aa490eb4d556ec254422b7c898f52 Mon Sep 17 00:00:00 2001 From: behnazh-w Date: Wed, 23 Apr 2025 10:48:33 +1000 Subject: [PATCH] refactor: log the SLSA summary in verbose mode only Signed-off-by: behnazh-w --- src/macaron/slsa_analyzer/analyzer.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/macaron/slsa_analyzer/analyzer.py b/src/macaron/slsa_analyzer/analyzer.py index 514c8d35e..baf3682cd 100644 --- a/src/macaron/slsa_analyzer/analyzer.py +++ b/src/macaron/slsa_analyzer/analyzer.py @@ -265,7 +265,7 @@ def run( self.generate_reports(report) # Print the analysis result into the console output. - logger.info(str(report)) + logger.debug(str(report)) db_session.add(analysis)