summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorAmirsaman Memaripour <amirsaman.memaripour@mongodb.com>2023-02-01 15:36:58 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2023-02-09 16:50:43 +0000
commit9a818736f42bd50a7349e61ef5f69d6fdc64924f (patch)
treed204fbb288fd50ac7673507cdb71fdc61d6bdb7d /src
parentff04e4b935075c049db641ab59371cda350d15ea (diff)
downloadmongo-9a818736f42bd50a7349e61ef5f69d6fdc64924f.tar.gz
SERVER-73232 Change the default log-verbosity for `_killOperations`
(cherry picked from commit cada8ff2bdf32b38170488f574d072a8a9c89545)
Diffstat (limited to 'src')
-rw-r--r--src/mongo/db/commands/killoperations_common.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/commands/killoperations_common.h b/src/mongo/db/commands/killoperations_common.h
index 6d18fe8e5a7..882f416da5c 100644
--- a/src/mongo/db/commands/killoperations_common.h
+++ b/src/mongo/db/commands/killoperations_common.h
@@ -64,7 +64,8 @@ public:
auto opKeys = Base::request().getOperationKeys();
for (auto& opKey : opKeys) {
- LOGV2(4615602, "Attempting to kill operation", "operationKey"_attr = opKey);
+ LOGV2_DEBUG(
+ 4615602, 2, "Attempting to kill operation", "operationKey"_attr = opKey);
opKiller.killOperation(OperationKey(opKey));
}
Derived::killCursors(opCtx, opKeys);