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 May 27, 2024
1 parent 2cf9441 commit f0bc6eb
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 @@ -256,8 +256,9 @@ def perform_analysis(args, skip_handlers, rs_handler: ReviewStatusHandler,
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 f0bc6eb

Please sign in to comment.