Skip to content

Commit 9d87893

Browse files
CybotTMclaude
andcommitted
fix(catalog): reduce logging noise during parallel operations
Change catalog loading log message from INFO to DEBUG level to prevent 70+ "Loaded 68 catalog entries" messages during make update. Each tool creates its own ToolCatalog instance, and with 70 tools running in parallel, this created excessive logging noise. The summary message is not critical for normal operations. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 3fe846d commit 9d87893

2 files changed

Lines changed: 387 additions & 387 deletions

File tree

cli_audit/catalog.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ def _load_catalog(self) -> None:
8282
except Exception as e:
8383
logger.error(f"Failed to load {json_file}: {e}")
8484

85-
logger.info(f"Loaded {len(self._entries)} catalog entries")
85+
logger.debug(f"Loaded {len(self._entries)} catalog entries")
8686

8787
def get(self, tool_name: str) -> ToolCatalogEntry | None:
8888
"""Get catalog entry for a tool.

0 commit comments

Comments
 (0)