From 5e449400a6e7747a2135aa81dedc71c46a1e3664 Mon Sep 17 00:00:00 2001 From: MaZderMind Date: Sat, 5 Sep 2015 20:47:42 +0200 Subject: little more debugging --- voctocore/lib/controlserver.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'voctocore/lib') 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: -- cgit v1.2.3