diff options
-rw-r--r-- | buildscripts/resmokelib/testing/fixtures/standalone.py | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/buildscripts/resmokelib/testing/fixtures/standalone.py b/buildscripts/resmokelib/testing/fixtures/standalone.py index 5cdf70059e1..71d439ca6af 100644 --- a/buildscripts/resmokelib/testing/fixtures/standalone.py +++ b/buildscripts/resmokelib/testing/fixtures/standalone.py @@ -193,15 +193,16 @@ class MongoDFixture(interface.Fixture): # The default verbosity setting for any tests that are not started with an Evergreen task id. This # will apply to any tests run locally. DEFAULT_MONGOD_LOG_COMPONENT_VERBOSITY = { - "replication": {"rollback": 2}, "sharding": {"migration": 2}, "transaction": 4, - "tenantMigration": 4 + "replication": {"rollback": 2}, "sharding": {"migration": 2, "rangeDeleter": 2}, + "transaction": 4, "tenantMigration": 4 } # The default verbosity setting for any mongod processes running in Evergreen i.e. started with an # Evergreen task id. DEFAULT_EVERGREEN_MONGOD_LOG_COMPONENT_VERBOSITY = { - "replication": {"election": 4, "heartbeats": 2, "initialSync": 2, "rollback": 2}, - "sharding": {"migration": 2}, "storage": {"recovery": 2}, "transaction": 4, "tenantMigration": 4 + "replication": {"election": 4, "heartbeats": 2, "initialSync": 2, + "rollback": 2}, "sharding": {"migration": 2, "rangeDeleter": 2}, + "storage": {"recovery": 2}, "transaction": 4, "tenantMigration": 4 } |