summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPierlauro Sciarelli <pierlauro.sciarelli@mongodb.com>2022-11-21 13:59:06 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-11-21 14:35:37 +0000
commitabcdf5a80b7239938e22fb9a464a58b6c30ef42c (patch)
treeb1d4efe55efad5f7f41c466c26c38e0c34a3cd26
parentd21a7491385af59f829a8b982def3064a1b21ae6 (diff)
downloadmongo-abcdf5a80b7239938e22fb9a464a58b6c30ef42c.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 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
}