[chore][LMCache connector] Remove useless logs from lmcache connector (#29069)

Signed-off-by: ApostaC <yihua98@uchicago.edu>
This commit is contained in:
Yihua Cheng 2025-11-21 19:18:00 -08:00 committed by GitHub
parent 6f403501a0
commit 77e1c035d0
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 0 additions and 4 deletions

View File

@ -310,7 +310,6 @@ class LMCacheMPWorkerAdapter:
request_id,
result,
)
logger.info("Retrieve request for request_id=%s finished", request_id)
# Remove the finished requests from the tracking dicts
for request_id in finished_stores:

View File

@ -469,9 +469,6 @@ class LMCacheMPConnector(KVConnectorBase_V1):
ops.append(meta.op)
if len(request_ids) > 0:
logger.info(
"HERE! SUBMITTING THE BATCHED RETRIEVE REQUESTS %s", request_ids
)
self.worker_adapter.batched_submit_retrieve_requests(
request_ids, ops, event
)