Unverified Commit 77e1c035 authored by Yihua Cheng's avatar Yihua Cheng Committed by GitHub
Browse files

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


Signed-off-by: default avatarApostaC <yihua98@uchicago.edu>
parent 6f403501
...@@ -310,7 +310,6 @@ class LMCacheMPWorkerAdapter: ...@@ -310,7 +310,6 @@ class LMCacheMPWorkerAdapter:
request_id, request_id,
result, result,
) )
logger.info("Retrieve request for request_id=%s finished", request_id)
# Remove the finished requests from the tracking dicts # Remove the finished requests from the tracking dicts
for request_id in finished_stores: for request_id in finished_stores:
......
...@@ -469,9 +469,6 @@ class LMCacheMPConnector(KVConnectorBase_V1): ...@@ -469,9 +469,6 @@ class LMCacheMPConnector(KVConnectorBase_V1):
ops.append(meta.op) ops.append(meta.op)
if len(request_ids) > 0: if len(request_ids) > 0:
logger.info(
"HERE! SUBMITTING THE BATCHED RETRIEVE REQUESTS %s", request_ids
)
self.worker_adapter.batched_submit_retrieve_requests( self.worker_adapter.batched_submit_retrieve_requests(
request_ids, ops, event request_ids, ops, event
) )
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment