fix(checkpoint): correct logging call to use logger (#5458)

fix[checkpoint]: correct logging call to use logger
This commit is contained in:
Michael Li
2025-07-14 19:16:10 +00:00
committed by GitHub
parent 3d9cb305b4
commit e91f72dd48
@@ -595,6 +595,6 @@ class PersistentDict(defaultdict):
except EOFError:
return
except Exception:
logging.error(f"Failed to load file: {fileobj.name}")
logger.error(f"Failed to load file: {fileobj.name}")
raise
raise ValueError("File not in a supported format")