From a9707ba2780514423124c4115cccfe4c761d38f3 Mon Sep 17 00:00:00 2001 From: Aditya Kulkarni Date: Thu, 31 Oct 2019 10:58:41 -0700 Subject: [PATCH] Remove unnecessary logging --- src/connection.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/connection.cpp b/src/connection.cpp index 585a0be..a2a882d 100644 --- a/src/connection.cpp +++ b/src/connection.cpp @@ -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);