File tree Expand file tree Collapse file tree
iotdb-core/datanode/src/main/java/org/apache/iotdb/db/storageengine/buffer Expand file tree Collapse file tree Original file line number Diff line number Diff line change 5858@ SuppressWarnings ("squid:S6548" )
5959public class ChunkCache {
6060
61- private static final Logger LOGGER = LoggerFactory .getLogger (ChunkCache .class );
62- private static final Logger QUERY_LOGGER =
63- LoggerFactory .getLogger (IoTDBConstant .QUERY_LOGGER_NAME );
61+ private static final Logger LOGGER = LoggerFactory .getLogger (IoTDBConstant .QUERY_LOGGER_NAME );
6462 private static final IoTDBConfig CONFIG = IoTDBDescriptor .getInstance ().getConfig ();
6563 private static final long MEMORY_THRESHOLD_IN_CHUNK_CACHE =
6664 CONFIG .getAllocateMemoryForChunkCache ();
@@ -155,7 +153,7 @@ private Chunk get(
155153 Chunk chunk = lruCache .get (chunkCacheKey , chunkLoader );
156154
157155 if (debug ) {
158- QUERY_LOGGER .info ("get chunk from cache whose key is: {}" , chunkCacheKey );
156+ LOGGER .info ("get chunk from cache whose key is: {}" , chunkCacheKey );
159157 }
160158
161159 return constructChunk (chunk , timeRangeList , chunkStatistic );
You can’t perform that action at this time.
0 commit comments