Skip to content

Commit

Permalink
fix logging
Browse files Browse the repository at this point in the history
  • Loading branch information
segasai committed Aug 7, 2024
1 parent 88a1d62 commit cf38788
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions py/rvspecfit/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,8 +66,8 @@ def read_config(fname=None, override_options=None):
for k in D0.keys():
if k not in D:
logging.debug(
'Keyword {} not found in configuration file. ' +
'Using default value {}', k, D0[k])
'Keyword %s not found in configuration file. ' +
'Using default value %s', k, D0[k])
D[k] = D0[k]
D['config_file_path'] = os.path.abspath(fname)
if override_options is not None:
Expand Down

0 comments on commit cf38788

Please sign in to comment.