Remove unnecessary logging

This commit is contained in:
Aditya Kulkarni 2019-10-31 10:58:41 -07:00
parent 07a07009e6
commit a9707ba278
1 changed files with 2 additions and 2 deletions

View File

@ -173,7 +173,7 @@ void Executor::run() {
QString reply = litelib_process_response(resp);
qDebug() << "RPC Reply=" << reply;
//qDebug() << "RPC Reply=" << reply;
auto parsed = json::parse(reply.toStdString().c_str(), nullptr, false);
if (parsed.is_discarded() || parsed.is_null()) {
emit handleError(reply);
@ -212,7 +212,7 @@ void Connection::doRPC(const QString cmd, const QString args, const std::functio
return;
}
qDebug() << "Doing RPC: " << cmd;
//qDebug() << "Doing RPC: " << cmd;
// Create a runner.
auto runner = new Executor(cmd, args);