Skip to content

Commit

Permalink
Removing long enabled checker list at info log level
Browse files Browse the repository at this point in the history
  • Loading branch information
dkrupp committed Nov 27, 2023
1 parent 2f0cd6f commit 74a9d60
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions analyzer/codechecker_analyzer/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -231,8 +231,9 @@ def perform_analysis(args, skip_handlers, actions, metadata_tool,
metadata_info['analyzer_statistics']['version'] = version

metadata_tool['analyzers'][analyzer] = metadata_info

LOG.info("Enabled checkers:\n%s", '\n'.join(
LOG.info("Enabled checker list can be found in " +
os.path.join(args.output_path, "metadata.json"))
LOG.debug("Enabled checkers:\n%s", '\n'.join(
k + ': ' + ', '.join(v) for k, v in enabled_checkers.items()))

if 'makefile' in args and args.makefile:
Expand Down

0 comments on commit 74a9d60

Please sign in to comment.