Skip to content

Commit

Permalink
move high_load log to debug/verbose
Browse files Browse the repository at this point in the history
  • Loading branch information
dlutsch committed Jan 10, 2024
1 parent 9a2b877 commit 0c5b110
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion efopen/ef_cf.py
Expand Up @@ -359,7 +359,8 @@ def main():
fail("JSON error in high load parameter file: {}".format(high_load_parameter_file, error))
else:
# Log message and exit gracefully if high load parameter file does not exist
print("High load parameter file not found: {}".format(high_load_parameter_file))
if context.verbose:
print("High load parameter file not found: {}".format(high_load_parameter_file))
exit()

if context.high_load and context.verbose:
Expand Down

0 comments on commit 0c5b110

Please sign in to comment.