summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/core/programs.py
diff options
context:
space:
mode:
authorHenrik Edin <henrik.edin@mongodb.com>2020-02-26 09:16:52 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2020-02-28 15:07:03 +0000
commit9f1853349108cca23a7b012841cfd73b14be9b63 (patch)
tree276de0e20b62973a34b1e712fef7d2b95d17cb57 /buildscripts/resmokelib/core/programs.py
parent6162bd9a335ebf8c87e1af657439d02d48bbc809 (diff)
downloadmongo-9f1853349108cca23a7b012841cfd73b14be9b63.tar.gz
SERVER-46415 Remove logFormat option and the ability to select the text formatter
Diffstat (limited to 'buildscripts/resmokelib/core/programs.py')
-rw-r--r--buildscripts/resmokelib/core/programs.py8
1 files changed, 0 insertions, 8 deletions
diff --git a/buildscripts/resmokelib/core/programs.py b/buildscripts/resmokelib/core/programs.py
index db5e893f194..35493b4feff 100644
--- a/buildscripts/resmokelib/core/programs.py
+++ b/buildscripts/resmokelib/core/programs.py
@@ -149,7 +149,6 @@ def mongod_program( # pylint: disable=too-many-branches
shortcut_opts = {
"enableMajorityReadConcern": config.MAJORITY_READ_CONCERN,
- "logFormat": config.LOG_FORMAT,
"nojournal": config.NO_JOURNAL,
"serviceExecutor": config.SERVICE_EXECUTOR,
"storageEngine": config.STORAGE_ENGINE,
@@ -225,9 +224,6 @@ def mongos_program(logger, executable=None, process_kwargs=None, **kwargs):
_apply_set_parameters(args, suite_set_parameters)
- if config.LOG_FORMAT is not None:
- kwargs["logFormat"] = config.LOG_FORMAT
-
# Apply the rest of the command line arguments.
_apply_kwargs(args, kwargs)
@@ -258,7 +254,6 @@ def mongo_shell_program( # pylint: disable=too-many-branches,too-many-locals,to
test_name = None
shortcut_opts = {
"enableMajorityReadConcern": (config.MAJORITY_READ_CONCERN, True),
- "logFormat": (config.LOG_FORMAT, ""),
"mixedBinVersions": (config.MIXED_BIN_VERSIONS, ""),
"noJournal": (config.NO_JOURNAL, False),
"serviceExecutor": (config.SERVICE_EXECUTOR, ""),
@@ -382,9 +377,6 @@ def mongo_shell_program( # pylint: disable=too-many-branches,too-many-locals,to
if "host" in kwargs:
kwargs.pop("host")
- if config.LOG_FORMAT is not None:
- kwargs["logFormat"] = config.LOG_FORMAT
-
# Apply the rest of the command line arguments.
_apply_kwargs(args, kwargs)