From 621de341a80d37a5ea98beded73d0c392dff836f Mon Sep 17 00:00:00 2001 From: Brett Costabile Date: Sun, 1 Nov 2015 18:06:35 -0500 Subject: [PATCH] Logging I think the issue may be with escaping the whitespace in group names. If this is the case, I'll have to tweak the code in ts3.py --- services/managers/util/ts3.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/services/managers/util/ts3.py b/services/managers/util/ts3.py index f13a04ba..41a0300a 100755 --- a/services/managers/util/ts3.py +++ b/services/managers/util/ts3.py @@ -60,6 +60,8 @@ class TS3Proto(): def send_command(self, command, keys=None, opts=None): cmd = self.construct_command(command, keys=keys, opts=opts) self.send('%s\n' % cmd) + + print("Command to be sent: {0}").format(cmd) data = []