summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/src/evict
diff options
context:
space:
mode:
authorEtienne Petrel <etienne.petrel@mongodb.com>2022-10-11 02:55:55 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-10-11 04:12:54 +0000
commitb5e4ebac34b7ef82989ab6f6230943e362b2ffc9 (patch)
tree75337e4776d5027e486ace5fb224c150bf345c12 /src/third_party/wiredtiger/src/evict
parent21a050d331e7522d43e9c8c1fd2631fff45441ef (diff)
downloadmongo-b5e4ebac34b7ef82989ab6f6230943e362b2ffc9.tar.gz
Import wiredtiger: fca4d75d1df403a73852b4a57e9a2ae3bb72bdfe from branch mongodb-master
ref: b3719943c9..fca4d75d1d for: 6.2.0-rc0 Revert "WT-9922 Define new debug verbosity levels (#8346)" (#8352)
Diffstat (limited to 'src/third_party/wiredtiger/src/evict')
-rw-r--r--src/third_party/wiredtiger/src/evict/evict_lru.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/third_party/wiredtiger/src/evict/evict_lru.c b/src/third_party/wiredtiger/src/evict/evict_lru.c
index 63fa232bd39..fd76f2b5aa1 100644
--- a/src/third_party/wiredtiger/src/evict/evict_lru.c
+++ b/src/third_party/wiredtiger/src/evict/evict_lru.c
@@ -461,9 +461,9 @@ __evict_server(WT_SESSION_IMPL *session, bool *did_work)
#ifdef HAVE_DIAGNOSTIC
/* Enable extra logs 20ms before timing out. */
if (!verbose_timeout_flags && time_diff_ms > WT_CACHE_STUCK_TIMEOUT_MS - 20) {
- WT_SET_VERBOSE_LEVEL(session, WT_VERB_EVICT, WT_VERBOSE_DEBUG_1);
- WT_SET_VERBOSE_LEVEL(session, WT_VERB_EVICTSERVER, WT_VERBOSE_DEBUG_1);
- WT_SET_VERBOSE_LEVEL(session, WT_VERB_EVICT_STUCK, WT_VERBOSE_DEBUG_1);
+ WT_SET_VERBOSE_LEVEL(session, WT_VERB_EVICT, WT_VERBOSE_DEBUG);
+ WT_SET_VERBOSE_LEVEL(session, WT_VERB_EVICTSERVER, WT_VERBOSE_DEBUG);
+ WT_SET_VERBOSE_LEVEL(session, WT_VERB_EVICT_STUCK, WT_VERBOSE_DEBUG);
verbose_timeout_flags = true;
}
#endif