Show debug output from iso fetch slots

This commit is contained in:
Kris Moore
2016-03-03 10:07:15 -05:00
parent 47f6f813f8
commit 5f148d5388
2 changed files with 3 additions and 3 deletions

View File

@@ -671,4 +671,4 @@ RestOutputStruct::ExitCode WebSocket::EvaluateSysadmZfsRequest(const QJsonValue
}
return RestOutputStruct::OK;
}
}

View File

@@ -10,11 +10,11 @@
// Iohyve Fetch is done
void WebSocket::slotIohyveFetchDone(QString id, int retcode, QString log)
{
//qDebug() << "Fetch Done" << id << retcode << log;
qDebug() << "Fetch Done" << id << retcode << log;
}
// Iohyve Fetch has output to read
void WebSocket::slotIohyveFetchProcessOutput(QString output)
{
//qDebug() << "Fetch Do" << output;
qDebug() << "Fetch Do" << output;
}