aboutsummaryrefslogtreecommitdiff
path: root/src/daemon/DaemonManager.cpp
diff options
context:
space:
mode:
authorJacob Brydolf <jacob@brydolf.net>2016-11-07 15:00:14 +0100
committerJaquee <jaquee.monero@gmail.com>2016-11-26 19:36:41 +0100
commit7840dab9cc03730ceaf7bfdc0b93674bc6489de6 (patch)
tree8264e6ac5cd97150eb197f299fb373ce805e1c8b /src/daemon/DaemonManager.cpp
parent14a5bd5dcc036a985a71e775a6d72cd5e703d322 (diff)
downloadmonzero-gui-7840dab9cc03730ceaf7bfdc0b93674bc6489de6.tar.gz
monzero-gui-7840dab9cc03730ceaf7bfdc0b93674bc6489de6.tar.xz
monzero-gui-7840dab9cc03730ceaf7bfdc0b93674bc6489de6.zip
DaemonManager: console debug output
Diffstat (limited to 'src/daemon/DaemonManager.cpp')
-rw-r--r--src/daemon/DaemonManager.cpp12
1 files changed, 2 insertions, 10 deletions
diff --git a/src/daemon/DaemonManager.cpp b/src/daemon/DaemonManager.cpp
index 1fdfcd52..aa87f1c6 100644
--- a/src/daemon/DaemonManager.cpp
+++ b/src/daemon/DaemonManager.cpp
@@ -80,9 +80,8 @@ void DaemonManager::printOutput()
QStringList strLines = QString(byteArray).split("\n");
foreach (QString line, strLines){
- // dConsole.append(line+"\n");
emit daemonConsoleUpdated(line);
- // qDebug() << "Daemon: " + line;
+ qDebug() << "Daemon: " + line;
}
}
@@ -92,9 +91,8 @@ void DaemonManager::printError()
QStringList strLines = QString(byteArray).split("\n");
foreach (QString line, strLines){
- // dConsole.append(line+"\n");
emit daemonConsoleUpdated(line);
- // qDebug() << "Daemon ERROR: " + line;
+ qDebug() << "Daemon ERROR: " + line;
}
}
@@ -109,12 +107,6 @@ bool DaemonManager::running() const
return false;
}
-QString DaemonManager::console() const
-{
- return dConsole;
-}
-
-
DaemonManager::DaemonManager(QObject *parent)
: QObject(parent)
{