diff options
author | Florian Pritz <bluewind@xinu.at> | 2013-02-11 22:56:22 +0100 |
---|---|---|
committer | Florian Pritz <bluewind@xinu.at> | 2013-02-11 22:56:22 +0100 |
commit | 833a7b602cd22c7d20604c37561c6e5a9699d582 (patch) | |
tree | 751fa076f84171486ac01caaab5138aba7917156 | |
parent | 0ef8e9b7c6a154f109315a2f597f20f94f65f1b7 (diff) | |
download | mpd-box-833a7b602cd22c7d20604c37561c6e5a9699d582.tar.gz mpd-box-833a7b602cd22c7d20604c37561c6e5a9699d582.tar.xz |
daemon: set loglevel to warning
Signed-off-by: Florian Pritz <bluewind@xinu.at>
-rwxr-xr-x | daemon.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -8,7 +8,7 @@ import logging logger = logging.getLogger() logging.basicConfig(format="%(asctime)s - %(name)s - %(levelname)s - %(message)s") -logger.setLevel(logging.DEBUG) +logger.setLevel(logging.WARNING) class Config: display_lines = 2 |