diff options
author | Mark Haines <mark.haines@matrix.org> | 2015-10-13 17:50:44 +0100 |
---|---|---|
committer | Mark Haines <mark.haines@matrix.org> | 2015-10-13 17:50:44 +0100 |
commit | 9020860479a9f70ae4d05ddcdc231d7e336474e3 (patch) | |
tree | 849c874b06b497a6b82bdba86080d7bee122de8a /synapse/config | |
parent | Fix pep8 warnings. (diff) | |
download | synapse-9020860479a9f70ae4d05ddcdc231d7e336474e3.tar.xz |
Only turn on the twisted deferred debugging if full_twisted_stacktraces is set in the config
Diffstat (limited to 'synapse/config')
-rw-r--r-- | synapse/config/logger.py | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/synapse/config/logger.py b/synapse/config/logger.py index bd0c17c861..a13dc170c4 100644 --- a/synapse/config/logger.py +++ b/synapse/config/logger.py @@ -22,6 +22,7 @@ import yaml from string import Template import os import signal +from synapse.util.debug import debug_deferreds DEFAULT_LOG_CONFIG = Template(""" @@ -69,6 +70,8 @@ class LoggingConfig(Config): self.verbosity = config.get("verbose", 0) self.log_config = self.abspath(config.get("log_config")) self.log_file = self.abspath(config.get("log_file")) + if config.get("full_twisted_stacktraces"): + debug_deferreds() def default_config(self, config_dir_path, server_name, **kwargs): log_file = self.abspath("homeserver.log") @@ -84,6 +87,11 @@ class LoggingConfig(Config): # A yaml python logging config file log_config: "%(log_config)s" + + # Stop twisted from discarding the stack traces of exceptions in + # deferreds by waiting a reactor tick before running a deferred's + # callbacks. + # full_twisted_stacktraces: true """ % locals() def read_arguments(self, args): |