changeset 734:07c610b06e58 easyhg_v1.4

Cut a bit of debug output
author Chris Cannam
date Tue, 18 Dec 2018 10:20:13 +0000
parents 7942b7633505
children dee64118b685
files src/hgrunner.cpp
diffstat 1 files changed, 5 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/src/hgrunner.cpp	Mon Dec 17 18:48:31 2018 +0000
+++ b/src/hgrunner.cpp	Tue Dec 18 10:20:13 2018 +0000
@@ -356,7 +356,7 @@
 
 void HgRunner::dataReadyStdout()
 {
-    DEBUG << "dataReadyStdout" << endl;
+//    DEBUG << "dataReadyStdout" << endl;
     if (!m_proc) return;
     QString chunk = QString::fromUtf8(m_proc->readAllStandardOutput());
     if (!checkPrompts(chunk)) {
@@ -366,10 +366,10 @@
 
 void HgRunner::dataReadyStderr()
 {
-    DEBUG << "dataReadyStderr" << endl;
+//    DEBUG << "dataReadyStderr" << endl;
     if (!m_proc) return;
     QString chunk = QString::fromUtf8(m_proc->readAllStandardError());
-    DEBUG << chunk;
+//    DEBUG << chunk;
     if (!checkPrompts(chunk)) {
         m_stderr += chunk;
     }
@@ -377,9 +377,9 @@
 
 void HgRunner::dataReadyPty()
 {
-    DEBUG << "dataReadyPty" << endl;
+//    DEBUG << "dataReadyPty" << endl;
     QString chunk = QString::fromUtf8(m_ptyFile->readAll());
-    DEBUG << "chunk of " << chunk.length() << " chars" << endl;
+//    DEBUG << "chunk of " << chunk.length() << " chars" << endl;
     if (!checkPrompts(chunk)) {
         m_stdout += chunk;
     }