Skip to content

Commit

Permalink
Fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
maresmar committed Jan 13, 2021
1 parent 2560176 commit e1e5ff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bandit/cli/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ def _decide_option_source(arg_val, ini_val, default_val, option_name):
LOG.info("Using ini file for %s", option_name)
return ini_val
elif default_val is not None:
print("Using default value for %s" % option_name)
LOG.info("Using default value for %s", option_name)
return default_val
else:
return None
Expand Down

0 comments on commit e1e5ff2

Please sign in to comment.