Skip to content

Commit 4b67691

Browse files
authored
Remove debug print (#20000)
This was added in fa1c132. There is already a `logger.debug()` statement; the duplicated print is unnecessary.
1 parent 0aee974 commit 4b67691

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

llama-index-core/llama_index/core/storage/kvstore/simple_kvstore.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,6 @@ def from_persist_path(
5151
"""Load a SimpleKVStore from a persist path and filesystem."""
5252
fs = fs or fsspec.filesystem("file")
5353
logger.debug(f"Loading {__name__} from {persist_path}.")
54-
print(f"Loading {__name__} from {persist_path}.")
5554
with fs.open(persist_path, "rb") as f:
5655
data = json.load(f)
5756
return cls(data)

0 commit comments

Comments
 (0)