summaryrefslogtreecommitdiff
path: root/src/third_party/wiredtiger/ext/storage_sources/s3_store/s3_storage_source.cpp
diff options
context:
space:
mode:
authorWill Korteland <will.korteland@mongodb.com>2022-10-20 02:11:22 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-10-20 02:43:27 +0000
commit0cea3930f598e724e13552f00dbf0eba4683da8b (patch)
treef396509e41c6aff1976136c6a33e466ba7f412b8 /src/third_party/wiredtiger/ext/storage_sources/s3_store/s3_storage_source.cpp
parent89909a5f0cab8b5cebab3431fa5471da82f8f014 (diff)
downloadmongo-0cea3930f598e724e13552f00dbf0eba4683da8b.tar.gz
Import wiredtiger: ee9edd2f225102800d0a6c29cda1f53eb35c20c3 from branch mongodb-master
ref: e989c881bf..ee9edd2f22 for: 6.2.0-rc0 Revert "WT-9922 Add more debug log levels (#8384)" (#8388)
Diffstat (limited to 'src/third_party/wiredtiger/ext/storage_sources/s3_store/s3_storage_source.cpp')
-rw-r--r--src/third_party/wiredtiger/ext/storage_sources/s3_store/s3_storage_source.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/third_party/wiredtiger/ext/storage_sources/s3_store/s3_storage_source.cpp b/src/third_party/wiredtiger/ext/storage_sources/s3_store/s3_storage_source.cpp
index 4010c5bcf99..4b66197845a 100644
--- a/src/third_party/wiredtiger/ext/storage_sources/s3_store/s3_storage_source.cpp
+++ b/src/third_party/wiredtiger/ext/storage_sources/s3_store/s3_storage_source.cpp
@@ -869,7 +869,7 @@ wiredtiger_extension_init(WT_CONNECTION *connection, WT_CONFIG_ARG *config)
s3->verbose = WT_VERBOSE_ERROR;
s3->log = Aws::MakeShared<S3LogSystem>("storage", s3->wtApi, s3->verbose);
- if (ret == 0 && v.val >= WT_VERBOSE_ERROR && v.val <= WT_VERBOSE_DEBUG_5) {
+ if (ret == 0 && v.val >= WT_VERBOSE_ERROR && v.val <= WT_VERBOSE_DEBUG) {
s3->verbose = v.val;
s3->log->SetWtVerbosityLevel(s3->verbose);
} else if (ret != WT_NOTFOUND) {