Skip to content

Commit

Permalink
minor fix for logging in multilayer_load_and_preprocess
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael McCrackan committed Jan 16, 2025
1 parent 6bca162 commit a2972ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sotodlib/preprocess/preprocess_util.py
Original file line number Diff line number Diff line change
Expand Up @@ -988,7 +988,7 @@ def check_cfg_match(ref, loaded, logger=None):
return False
else:
if type(ref[ri]) is core.AxisManager:
check_cfg_match(ref[ri], loaded[li])
check_cfg_match(ref[ri], loaded[li], logger)
elif ref[ri] == loaded[li]:
continue
else:
Expand Down

0 comments on commit a2972ee

Please sign in to comment.