From 2d92c6b4acae2dcf8ba872e359205a4b239d26a1 Mon Sep 17 00:00:00 2001 From: zhengyu Date: Thu, 17 Jul 2025 16:50:11 +0800 Subject: [PATCH] [fix](filecache) remove unnecessary debug log (#53348) --- 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);