DaemonManager: console debug output

This commit is contained in:
Jacob Brydolf 2016-11-07 15:00:14 +01:00 committed by Jaquee
parent 14a5bd5dcc
commit 7840dab9cc
No known key found for this signature in database
GPG key ID: 384E52B09F45DC39
2 changed files with 2 additions and 12 deletions

View file

@ -80,9 +80,8 @@ void DaemonManager::printOutput()
QStringList strLines = QString(byteArray).split("\n"); QStringList strLines = QString(byteArray).split("\n");
foreach (QString line, strLines){ foreach (QString line, strLines){
// dConsole.append(line+"\n");
emit daemonConsoleUpdated(line); emit daemonConsoleUpdated(line);
// qDebug() << "Daemon: " + line; qDebug() << "Daemon: " + line;
} }
} }
@ -92,9 +91,8 @@ void DaemonManager::printError()
QStringList strLines = QString(byteArray).split("\n"); QStringList strLines = QString(byteArray).split("\n");
foreach (QString line, strLines){ foreach (QString line, strLines){
// dConsole.append(line+"\n");
emit daemonConsoleUpdated(line); emit daemonConsoleUpdated(line);
// qDebug() << "Daemon ERROR: " + line; qDebug() << "Daemon ERROR: " + line;
} }
} }
@ -109,12 +107,6 @@ bool DaemonManager::running() const
return false; return false;
} }
QString DaemonManager::console() const
{
return dConsole;
}
DaemonManager::DaemonManager(QObject *parent) DaemonManager::DaemonManager(QObject *parent)
: QObject(parent) : QObject(parent)
{ {

View file

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