From 45f827339f47672c800bb9324e3b3d4ec880df9f Mon Sep 17 00:00:00 2001 From: zhengyu Date: Wed, 16 Jul 2025 10:24:33 +0800 Subject: [PATCH] [fix](filecache) remove unnecessary debug log this log print too much, remove it Signed-off-by: zhengyu --- be/src/io/cache/lru_queue_recorder.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/be/src/io/cache/lru_queue_recorder.cpp b/be/src/io/cache/lru_queue_recorder.cpp index c26c19ec371811..8308a2a73ad6e3 100644 --- a/be/src/io/cache/lru_queue_recorder.cpp +++ b/be/src/io/cache/lru_queue_recorder.cpp @@ -54,7 +54,6 @@ void LRUQueueRecorder::replay_queue_event(FileCacheType type) { break; } case CacheLRULogType::MOVETOBACK: { - LOG(INFO) << "MOVETOBACK" << log->hash.to_string() << " " << log->offset; auto it = shadow_queue.get(log->hash, log->offset, lru_log_lock); if (it != std::list::iterator()) { shadow_queue.move_to_end(it, lru_log_lock);