summaryrefslogtreecommitdiff
path: root/buildscripts/resmokelib/logging/config.py
diff options
context:
space:
mode:
Diffstat (limited to 'buildscripts/resmokelib/logging/config.py')
-rw-r--r--buildscripts/resmokelib/logging/config.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/buildscripts/resmokelib/logging/config.py b/buildscripts/resmokelib/logging/config.py
index c3960bbafd3..c3216b2d879 100644
--- a/buildscripts/resmokelib/logging/config.py
+++ b/buildscripts/resmokelib/logging/config.py
@@ -67,8 +67,8 @@ def apply_buildlogger_global_handler(logger, logging_config, build_id=None, buil
log_format = logger_info.get("format", _DEFAULT_FORMAT)
formatter = formatters.ISO8601Formatter(fmt=log_format)
- handler = buildlogger.BuildloggerGlobalHandler(build_id,
- build_config,
+ handler = buildlogger.BuildloggerGlobalHandler(build_config,
+ build_id,
**handler_info)
handler.setFormatter(formatter)
else:
@@ -98,8 +98,8 @@ def apply_buildlogger_test_handler(logger,
log_format = logger_info.get("format", _DEFAULT_FORMAT)
formatter = formatters.ISO8601Formatter(fmt=log_format)
- handler = buildlogger.BuildloggerTestHandler(build_id,
- build_config,
+ handler = buildlogger.BuildloggerTestHandler(build_config,
+ build_id,
test_id,
**handler_info)
handler.setFormatter(formatter)