Skip to content

Commit

Permalink
change logger call in matlab_z_file_reader.py
Browse files Browse the repository at this point in the history
  • Loading branch information
Laura Keyson committed Nov 28, 2023
1 parent 64a6d81 commit 9937b36
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,7 @@ def test_matlab_zfile_reader(case_id="IAK34ss", make_plot=False):
for i in range(len(periods)):
if np.isnan(cov_nn[:, :, i]).any():
nan_cov_nn.append(i)
logger(f"NAN {i}")
logger.info(f"NAN {i}")

if case_id == "synthetic":
cov_nn[:, :, 28] = cov_nn[:, :, 27]
Expand Down Expand Up @@ -224,4 +224,4 @@ def test_matlab_zfile_reader(case_id="IAK34ss", make_plot=False):
rtol=1e-3,
).all()

logger("success!")
logger.info("success!")

0 comments on commit 9937b36

Please sign in to comment.