From d4f49a50145f62aead84054ea9f2f1681f845c56 Mon Sep 17 00:00:00 2001 From: david hill Date: Wed, 18 Oct 2017 16:54:03 -0500 Subject: [PATCH] mcol-943 - fixed a read error log --- procmon/main.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/procmon/main.cpp b/procmon/main.cpp index fd754edd0..cc6835f3a 100644 --- a/procmon/main.cpp +++ b/procmon/main.cpp @@ -2223,7 +2223,7 @@ void processStatusMSG(messageqcpp::IOSocket* cfIos) catch (exception& ex) { string error = ex.what(); - log.writeLog(__LINE__, "***read error, close create thread: " + error, LOG_TYPE_DEBUG); +// log.writeLog(__LINE__, "***read error, close create thread: " + error, LOG_TYPE_DEBUG); fIos->close(); delete fIos; delete msg; @@ -2232,7 +2232,7 @@ void processStatusMSG(messageqcpp::IOSocket* cfIos) } catch(...) { - log.writeLog(__LINE__, "***read error, close create thread", LOG_TYPE_DEBUG); +// log.writeLog(__LINE__, "***read error, close create thread", LOG_TYPE_DEBUG); fIos->close(); delete fIos; delete msg; @@ -2241,7 +2241,7 @@ void processStatusMSG(messageqcpp::IOSocket* cfIos) } if (msg->length() <= 0) { - log.writeLog(__LINE__, "***0 bytes, close create thread", LOG_TYPE_DEBUG); +// log.writeLog(__LINE__, "***0 bytes, close create thread", LOG_TYPE_DEBUG); fIos->close(); delete fIos; delete msg;