aboutsummaryrefslogtreecommitdiff
path: root/voctocore/lib
diff options
context:
space:
mode:
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: