summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierlauro Sciarelli <pierlauro.sciarelli@mongodb.com>2022-11-21 13:59:13 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-11-21 14:57:10 +0000
commitdf0069fbb15c2f56f17e969aedb3ef057100f8c3 (patch)
tree558c8c6c1d729169d95d909cca60df3887ae8d2c
parent4c0d9f3d13e5e8f6bf03ec8c22282db03d65eab9 (diff)
downloadmongo-df0069fbb15c2f56f17e969aedb3ef057100f8c3.tar.gz
SERVER-71435 Increse verbosity level for range-deleter in resmoke
-rw-r--r--buildscripts/resmokelib/testing/fixtures/standalone.py9
1 files changed, 5 insertions, 4 deletions
diff --git a/buildscripts/resmokelib/testing/fixtures/standalone.py b/buildscripts/resmokelib/testing/fixtures/standalone.py
index 49f78535e5e..8977bd65495 100644
--- a/buildscripts/resmokelib/testing/fixtures/standalone.py
+++ b/buildscripts/resmokelib/testing/fixtures/standalone.py
@@ -191,15 +191,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
}