summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLars Wirzenius <liw@liw.fi>2015-05-31 15:16:02 +0300
committerLars Wirzenius <liw@liw.fi>2015-05-31 15:16:02 +0300
commita5ed9ca57067e108f4bf48ee4bb23c842e1172b8 (patch)
treeb948ad79154e3086cf5836bd0c882c5b21795698
parent60ab3755923ac5c489e7e89f75b54868501659a3 (diff)
downloadcliapp-a5ed9ca57067e108f4bf48ee4bb23c842e1172b8.tar.gz
Remove logging.debug calls to reduce verbosity
-rw-r--r--cliapp/runcmd.py2
1 files changed, 0 insertions, 2 deletions
diff --git a/cliapp/runcmd.py b/cliapp/runcmd.py
index 717a5f5..799a488 100644
--- a/cliapp/runcmd.py
+++ b/cliapp/runcmd.py
@@ -224,7 +224,6 @@ def _run_pipeline(procs, feed_stdin, pipe_stdin, pipe_stdout, pipe_stderr,
if procs[-1].stdout in r:
data = procs[-1].stdout.read(io_size)
if data:
- logging.debug('calling stdout callback: %r', stdout_callback)
data_new = stdout_callback(data)
if data_new is None:
data_new = data
@@ -235,7 +234,6 @@ def _run_pipeline(procs, feed_stdin, pipe_stdin, pipe_stdout, pipe_stderr,
if procs[-1].stderr in r:
data = procs[-1].stderr.read(io_size)
if data:
- logging.debug('calling stderr callback: %r', stderr_callback)
data_new = stderr_callback(data)
if data_new is None:
data_new = data