diff options
Diffstat (limited to 'src/mongo/logger/log_component_settings.h')
-rw-r--r-- | src/mongo/logger/log_component_settings.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/logger/log_component_settings.h b/src/mongo/logger/log_component_settings.h index 23440129d54..3b85f174b31 100644 --- a/src/mongo/logger/log_component_settings.h +++ b/src/mongo/logger/log_component_settings.h @@ -32,7 +32,7 @@ #include "mongo/logger/log_component.h" #include "mongo/logger/log_severity.h" #include "mongo/platform/atomic_word.h" -#include "mongo/stdx/mutex.h" +#include "mongo/platform/mutex.h" namespace mongo { namespace logger { @@ -87,7 +87,7 @@ private: // A mutex to synchronize writes to the severity arrays. This mutex is to synchronize changes to // the entire array, and the atomics are to synchronize individual elements. - stdx::mutex _mtx; + Mutex _mtx = MONGO_MAKE_LATCH("LogComponentSettings::_mtx"); // True if a log severity is explicitly set for a component. // This differentiates between unconfigured components and components that happen to have |