diff options
author | reivilibre <oliverw@matrix.org> | 2022-06-30 12:58:12 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-30 11:58:12 +0000 |
commit | 9667bad55d8b50fe08990a8cfd2ac82c8540bcc1 (patch) | |
tree | 663c46095087d83481f7e459ed1d6f7f5ecd5105 /docker/conf/log.config | |
parent | Actually typecheck `tests.test_server` (#13135) (diff) | |
download | synapse-9667bad55d8b50fe08990a8cfd2ac82c8540bcc1.tar.xz |
Improve startup times in Complement test runs against workers, particularly in CPU-constrained environments. (#13127)
Co-authored-by: Richard van der Hoff <1389908+richvdh@users.noreply.github.com>
Diffstat (limited to 'docker/conf/log.config')
-rw-r--r-- | docker/conf/log.config | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/docker/conf/log.config b/docker/conf/log.config index dc8c70befd..d9e85aa533 100644 --- a/docker/conf/log.config +++ b/docker/conf/log.config @@ -2,7 +2,11 @@ version: 1 formatters: precise: + {% if include_worker_name_in_log_line %} + format: '{{ worker_name }} | %(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(request)s - %(message)s' + {% else %} format: '%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(request)s - %(message)s' + {% endif %} handlers: {% if LOG_FILE_PATH %} |