Skip to content

Commit

Permalink
[fix] Error when debug logging skipped actions
Browse files Browse the repository at this point in the history
A small fix for a crashing logging statement.
  • Loading branch information
bruntib committed Jul 29, 2024
1 parent 5c6b81e commit 85bd9b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion analyzer/codechecker_analyzer/buildlog/log_parser.py
Original file line number Diff line number Diff line change
Expand Up @@ -1308,7 +1308,7 @@ def parse_unique_log(compilation_database,
and pre_analysis_skip_handlers.should_skip(
action.source)):
skipped_cmp_cmd_count += 1
LOG.debug("skipping:", action.source)
LOG.debug("skipping: %s", action.source)
continue

if not action.lang:
Expand Down

0 comments on commit 85bd9b3

Please sign in to comment.