diff options
author | Amirsaman Memaripour <amirsaman.memaripour@mongodb.com> | 2021-06-23 19:27:50 +0000 |
---|---|---|
committer | Amirsaman Memaripour <amirsaman.memaripour@mongodb.com> | 2021-06-28 15:23:52 +0000 |
commit | b3fe874d0d7523549229fa09d0b5c76525acbcf9 (patch) | |
tree | 8858d4162644fc22ca5aa2aef3fcccdbe23028ff /src/mongo | |
parent | bf7c6c8d96ae29fcadaff3615fce5f85a5551624 (diff) | |
download | mongo-b3fe874d0d7523549229fa09d0b5c76525acbcf9.tar.gz |
SERVER-57639 Log termination of sessions at debug level
(cherry picked from commit d48cea2e51ea038956f0476fcc9f6653025cd26e)
Diffstat (limited to 'src/mongo')
-rw-r--r-- | src/mongo/transport/service_state_machine.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/transport/service_state_machine.cpp b/src/mongo/transport/service_state_machine.cpp index 7b5012887a7..dd530adfb9f 100644 --- a/src/mongo/transport/service_state_machine.cpp +++ b/src/mongo/transport/service_state_machine.cpp @@ -668,7 +668,7 @@ void ServiceStateMachine::Impl::setCleanupHook(std::function<void()> hook) { } void ServiceStateMachine::Impl::cleanupSession(const Status& status) { - LOGV2_INFO(5127900, "Ending session", "error"_attr = status); + LOGV2_DEBUG(5127900, 2, "Ending session", "error"_attr = status); cleanupExhaustResources(); |