Skip to content

Commit 63b2609

Browse files
daverigbytrondn
authored andcommitted
Reduce verbosity of Ephemeral Tombstone Purger
Reduce from NOTICE to INFO the Ephemeral tombstone progress messages, as they are pretty verbose (2 lines per minute per Bucket) and consume quite a bit of log space. Change-Id: Iadf2fc7979b24dc815ada8eab9c9293ac957f2e0 Reviewed-on: http://review.couchbase.org/82863 Tested-by: Build Bot <[email protected]> Reviewed-by: Manu Dhundi <[email protected]>
1 parent 1b06cd9 commit 63b2609

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

engines/ep/src/ephemeral_tombstone_purger.cc

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ bool EphTombstoneHTCleaner::run() {
9191
getDeletedPurgeAge()));
9292
bucketPosition = bucket.startPosition();
9393

94-
LOG(EXTENSION_LOG_NOTICE /*INFO*/,
94+
LOG(EXTENSION_LOG_INFO,
9595
"%s starting with purge age:%" PRIu64 "s",
9696
getDescription().data(),
9797
uint64_t(getDeletedPurgeAge()));
@@ -121,7 +121,7 @@ bool EphTombstoneHTCleaner::run() {
121121

122122
// Completed a full pass. Sleep ourselves, and wakeup the StaleItemDeleter
123123
// task to complete the purge.
124-
LOG(EXTENSION_LOG_NOTICE /*INFO*/,
124+
LOG(EXTENSION_LOG_INFO,
125125
"%s %s. Took %" PRIu64 " ms. Visited %" PRIu64 " items, marked %" PRIu64
126126
" items as stale. Sleeping for %" PRIu64 " seconds.",
127127
getDescription().data(),

0 commit comments

Comments
 (0)