DaemonManager: console debug output

pull/2/head
Jacob Brydolf 8 years ago committed by Jaquee
parent 14a5bd5dcc
commit 7840dab9cc
No known key found for this signature in database
GPG Key ID: 384E52B09F45DC39

@ -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)
{

@ -15,7 +15,6 @@ public:
Q_INVOKABLE bool start();
Q_INVOKABLE bool stop();
Q_INVOKABLE QString console() const;
// return true if daemon process is started
Q_INVOKABLE bool running() const;
@ -34,7 +33,6 @@ private:
explicit DaemonManager(QObject *parent = 0);
static DaemonManager * m_instance;
QProcess *m_daemon;
QString dConsole;
bool initialized = false;
};