diff options
author | MaZderMind <git@mazdermind.de> | 2015-09-05 20:47:42 +0200 |
---|---|---|
committer | MaZderMind <git@mazdermind.de> | 2015-09-05 20:47:42 +0200 |
commit | 5e449400a6e7747a2135aa81dedc71c46a1e3664 (patch) | |
tree | 26944c7cfaf5a666066493ad505a1dd364725582 | |
parent | 11194b420195c13b33ff3b04c7b18292ecd2265e (diff) |
little more debugging
-rw-r--r-- | voctocore/lib/controlserver.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/voctocore/lib/controlserver.py b/voctocore/lib/controlserver.py index 11c9787..b96d11d 100644 --- a/voctocore/lib/controlserver.py +++ b/voctocore/lib/controlserver.py @@ -83,12 +83,13 @@ class ControlServer(TCPMultiConnection): command = words[0] args = words[1:] - self.log.debug("processing command %r with args %s", command, args) + self.log.info("processing command %r with args %s", command, args) try: command_function = self.commands.__class__.__dict__[command] except KeyError as e: + self.log.info("received unknown command %s", command) response = "error unknown command %s\n" % command else: |