aboutsummaryrefslogtreecommitdiff
path: root/voctocore/lib
diff options
context:
space:
mode:
authorMaZderMind <git@mazdermind.de>2015-09-05 20:47:42 +0200
committerMaZderMind <git@mazdermind.de>2015-09-05 20:47:42 +0200
commit5e449400a6e7747a2135aa81dedc71c46a1e3664 (patch)
tree26944c7cfaf5a666066493ad505a1dd364725582 /voctocore/lib
parent11194b420195c13b33ff3b04c7b18292ecd2265e (diff)
little more debugging
Diffstat (limited to 'voctocore/lib')
-rw-r--r--voctocore/lib/controlserver.py3
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: