Skip to content

Commit

Permalink
Merge pull request #68 from codecov/matt/checkpoint-logger-warning
Browse files Browse the repository at this point in the history
fix: ezpz: downgrade checkpoint logger errors to warnings
  • Loading branch information
matt-codecov committed Aug 17, 2023
2 parents 5df32f9 + 6196775 commit 6be055d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion helpers/checkpoint_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ def _error(self, msg):
if self.strict:
raise ValueError(msg)
else:
logger.error(msg)
logger.warning(msg)

def _validate_checkpoint(self, checkpoint):
if checkpoint.__class__ != self.cls:
Expand Down

0 comments on commit 6be055d

Please sign in to comment.