Skip to content

Commit

Permalink
Lower 'no cbmc-viewer.json' logging from error to info
Browse files Browse the repository at this point in the history
Viewer currently logs an error if the configuration file
cbmc-viewer.json is missing.  Viewer does not depend on the
configuration file, it is merely guided to better results by the
configuration file.  This change lowers the error message to an info
message (that is not displayed without the --verbose or --debug
flags).
  • Loading branch information
Mark R. Tuttle authored and tautschnig committed Jul 6, 2022
1 parent 1a022d9 commit fbe42ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cbmc_viewer/configt.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ def __init__(self, config_file=None):
return

if not Path(config_file).exists():
logging.error("Config file does not exist: %s", config_file)
logging.info("Config file does not exist: %s", config_file)
return

config_data = parse.parse_json_file(config_file)
Expand Down

0 comments on commit fbe42ba

Please sign in to comment.