0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

SERVER-38321 Enable verbose checkpoint logging in WiredTiger

This commit is contained in:
Gregory Wlodarek 2019-05-07 12:30:21 -04:00
parent 29db842551
commit b17ff73e37

View File

@ -588,6 +588,7 @@ WiredTigerKVEngine::WiredTigerKVEngine(const std::string& canonicalName,
ss << "file_manager=(close_idle_time=100000),"; //~28 hours, will put better fix in 3.1.x
ss << "statistics_log=(wait=" << wiredTigerGlobalOptions.statisticsLogDelaySecs << "),";
ss << "verbose=(recovery_progress),";
ss << "verbose=(checkpoint_progress),";
if (shouldLog(::mongo::logger::LogComponent::kStorageRecovery,
logger::LogSeverity::Debug(3))) {