Skip to content

Commit cf2cd1b

Browse files
fix: Fix the log level for some messages
Signed-off-by: Nikos Livathinos <nli@zurich.ibm.com>
1 parent 66ff27c commit cf2cd1b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docling_eval/evaluators/table_evaluator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -208,7 +208,7 @@ def __call__(
208208
# Load the dataset
209209
split_path = str(ds_path / split / "*.parquet")
210210
split_files = glob.glob(split_path)
211-
_log.info("Files: %s", split_files)
211+
_log.debug("Files: %s", split_files)
212212
ds = load_dataset("parquet", data_files={split: split_files})
213213
_log.info("Overview of dataset: %s", ds)
214214

docling_eval/utils/external_docling_document_loader.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def load(
9292

9393
# Check if to update the cache
9494
if self._enable_cache and doc is not None:
95-
_log.info("Caching externally loaded document: %s", doc_id)
95+
_log.debug("Caching externally loaded document: %s", doc_id)
9696
self._cache[doc_id] = doc
9797

9898
return doc

0 commit comments

Comments
 (0)