From 33930b78654c29bd34f68b25a091bc1951b86d93 Mon Sep 17 00:00:00 2001 From: ksc Date: Sat, 3 Dec 2016 00:28:20 +0800 Subject: [PATCH] Use `logger` instead of `logging` --- libtmux/common.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtmux/common.py b/libtmux/common.py index e9b4416f2..e0604bc62 100644 --- a/libtmux/common.py +++ b/libtmux/common.py @@ -186,7 +186,7 @@ def __init__(self, *args, **kwargs): if not self.stdout: self.stdout = self.stderr[0] - logging.debug('self.stdout for %s: \n%s' % + logger.debug('self.stdout for %s: \n%s' % (' '.join(cmd), self.stdout))