Skip to content
Snippets Groups Projects
Commit 6967e93f authored by Matthew Hodgson's avatar Matthew Hodgson
Browse files

Merge branch 'master' of git+ssh://github.com/matrix-org/synapse

parents 31f2ec25 b370f990
No related branches found
No related tags found
No related merge requests found
...@@ -88,9 +88,8 @@ def setup_logging(verbosity=0, filename=None, config_path=None): ...@@ -88,9 +88,8 @@ def setup_logging(verbosity=0, filename=None, config_path=None):
'%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(message)s' '%(asctime)s - %(name)s - %(lineno)d - %(levelname)s - %(message)s'
) )
if not verbosity or verbosity == 0: level = logging.INFO
level = logging.INFO if verbosity:
elif verbosity == 1:
level = logging.DEBUG level = logging.DEBUG
# FIXME: we need a logging.WARN for a -q quiet option # FIXME: we need a logging.WARN for a -q quiet option
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment