Skip to content

Commit

Permalink
feat(s3stream): change read ahead size metrics level to INFO (#871)
Browse files Browse the repository at this point in the history
Signed-off-by: Shichao Nie <[email protected]>
  • Loading branch information
SCNieh authored Jan 2, 2024
1 parent 4bacd09 commit 1fd1611
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ public void updateReadAheadResult(long readAheadEndOffset, int readAheadSize) {
lock.lock();
this.readAheadEndOffset = readAheadEndOffset;
this.lastReadAheadSize = readAheadSize;
S3StreamMetricsManager.recordReadAheadSize(MetricsLevel.DEBUG, readAheadSize);
S3StreamMetricsManager.recordReadAheadSize(MetricsLevel.INFO, readAheadSize);
if (logger.isDebugEnabled()) {
logger.debug("update read ahead offset {}, size: {}, lastReadOffset: {}", readAheadEndOffset, readAheadSize, lastReadOffset);
}
Expand Down

0 comments on commit 1fd1611

Please sign in to comment.