From c102bb57c1e6c6f9df53b313127fe50d86d8dc01 Mon Sep 17 00:00:00 2001 From: dockes Date: Mon, 28 Sep 2009 17:53:30 +0000 Subject: [PATCH] adjust log levels --- src/utils/execmd.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/utils/execmd.cpp b/src/utils/execmd.cpp index b7ce98c5..19983900 100644 --- a/src/utils/execmd.cpp +++ b/src/utils/execmd.cpp @@ -235,7 +235,7 @@ public: virtual int data(NetconData *con, Netcon::Event reason) { if (!m_input) return -1; - LOGDEB(("ExecWriter: input m_cnt %d input length %d\n", m_cnt, + LOGDEB1(("ExecWriter: input m_cnt %d input length %d\n", m_cnt, m_input->length())); if (m_cnt >= m_input->length()) { // Fd ready for more but we got none. @@ -278,7 +278,7 @@ public: { char buf[8192]; int n = con->receive(buf, 8192); - LOGDEB(("ExecReader: got %d from command\n", n)); + LOGDEB1(("ExecReader: got %d from command\n", n)); if (n < 0) { LOGERR(("ExecCmd::doexec: receive failed. errno %d\n", errno)); } else if (n > 0) {