Skip to content

Commit

Permalink
fix: replace evaluated strings
Browse files Browse the repository at this point in the history
  • Loading branch information
hollandjg committed Mar 13, 2024
1 parent 044db60 commit 5911294
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/icesat2waves/local_modules/m_spectrum_ph3.py
Original file line number Diff line number Diff line change
Expand Up @@ -470,10 +470,10 @@ def __init__(
else:
if plot_chunks:
_logger.debug("end of TS is reached")
_logger.debug("last spec No: " + str(last_k))
_logger.debug("spec container: " + str(specs.shape))
_logger.debug("last used Timestep: " + str(last_used_TS))
_logger.debug("length of TS " + str(dsize) + "ms")
_logger.debug("last spec No: %s", last_k)
_logger.debug("spec container: %s", specs.shape)
_logger.debug("last used Timestep: %s", last_used_TS)
_logger.debug("length of TS %s ms", dsize)

k += 1

Expand Down

0 comments on commit 5911294

Please sign in to comment.