Skip to content

Commit

Permalink
[cmd] Display warning instead of debug log for missing diagtool
Browse files Browse the repository at this point in the history
  • Loading branch information
bruntib committed Sep 12, 2024
1 parent c07cd8c commit cbb3b7b
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions analyzer/codechecker_analyzer/analyzers/clangtidy/analyzer.py
Original file line number Diff line number Diff line change
Expand Up @@ -136,8 +136,9 @@ def get_diagtool_bin():
if os.path.exists(diagtool_bin):
return diagtool_bin

LOG.debug("'diagtool' can not be found next to the clang binary (%s)!",
clang_bin)
LOG.warning(
"'diagtool' can not be found next to the clang binary (%s)!",
clang_bin)

return None

Expand Down

0 comments on commit cbb3b7b

Please sign in to comment.