Skip to content

Commit

Permalink
Change log level to debug
Browse files Browse the repository at this point in the history
Signed-off-by: Ashish Singh <ssashish@amazon.com>
  • Loading branch information
ashking94 committed Jan 16, 2023
1 parent 07561b9 commit 776d2a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,7 @@ void drainAndProcessAndRelease(List<Tuple<Item, Consumer<Exception>>> candidates
exception = processList(candidates);
} finally {
promiseSemaphore.release();
logger.info("step=drainAndProcessAndRelease timeTakenInMs={}", (System.currentTimeMillis() - lastRunStartTimeInMs));
logger.debug("step=drainAndProcessAndRelease timeTakenInMs={}", (System.currentTimeMillis() - lastRunStartTimeInMs));
}
notifyList(candidates, exception);
candidates.clear();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ public void onUploadFailed(TransferSnapshot transferSnapshot, Exception ex) thro
}

private void logUploadStats(long uploadStartTime, boolean uploadStatus) {
logger.info("Translog Upload status={} timeTaken={}", uploadStatus, (System.currentTimeMillis() - uploadStartTime));
logger.debug("Translog Upload status={} timeTaken={}", uploadStatus, (System.currentTimeMillis() - uploadStartTime));

}

Expand Down

0 comments on commit 776d2a2

Please sign in to comment.