# HG changeset patch # User Chris Cannam # Date 1545128413 0 # Node ID 07c610b06e58edf3af93aa7c5b895060dd38baa2 # Parent 7942b7633505611f38fa5bb539419cb1afe7f1a5 Cut a bit of debug output diff -r 7942b7633505 -r 07c610b06e58 src/hgrunner.cpp --- 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; }