refactor: replace print statements with proper logging (#25773)

This commit is contained in:
-LAN-
2025-09-18 20:35:47 +08:00
committed by GitHub
parent bb01c31f30
commit 4ba1292455
8 changed files with 30 additions and 12 deletions

View File

@@ -46,7 +46,11 @@ limit 1000"""
record_id = str(i.id)
provider_name = str(i.provider_name)
retrieval_model = i.retrieval_model
print(type(retrieval_model))
logger.debug(
"Processing dataset %s with retrieval model of type %s",
record_id,
type(retrieval_model),
)
if record_id in failed_ids:
continue