diff options
author | Marco Capitani <m.capitani@nextworks.it> | 2017-04-24 17:41:48 +0200 |
---|---|---|
committer | Marco Capitani <m.capitani@nextworks.it> | 2017-04-24 17:41:48 +0200 |
commit | 58cca7f676af0ca081a521c113e43ac2bd24ccf5 (patch) | |
tree | 756c1d9c94be43944938c2c1dbd5854099e042ea | |
parent | 58b1a46bfbf7960336fa25a3a9c3b8916530328f (diff) | |
download | rumba-58cca7f676af0ca081a521c113e43ac2bd24ccf5.tar.gz rumba-58cca7f676af0ca081a521c113e43ac2bd24ccf5.zip |
Fixed default level to DEBUG
-rw-r--r-- | rumba/log.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/rumba/log.py b/rumba/log.py index 8c95330..d95c034 100644 --- a/rumba/log.py +++ b/rumba/log.py @@ -60,7 +60,7 @@ def setup(): handler.setFormatter(formatter) logging.basicConfig(handlers=[handler], level=logging.DEBUG) logging.getLogger('').setLevel(logging.ERROR) - logging.getLogger('rumba').setLevel(logging.DEBUG) + logging.getLogger('rumba').setLevel(logging.INFO) # Used for the first call, in order to configure logging |