From 9d2c71e4df0ee89f5ee87d0f69311b7b668291e8 Mon Sep 17 00:00:00 2001 From: Thulinma Date: Thu, 24 Jul 2014 15:10:48 +0200 Subject: [PATCH] Tweaked debug message levels for MistIn/Out processes --- src/input/input.cpp | 4 ++-- src/output/output.cpp | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/input/input.cpp b/src/input/input.cpp index 680416a9..7544892c 100644 --- a/src/input/input.cpp +++ b/src/input/input.cpp @@ -163,7 +163,7 @@ namespace Mist { } } - DEBUG_MSG(DLVL_HIGH,"Pre-While"); + DEBUG_MSG(DLVL_DONTEVEN,"Pre-While"); long long int activityCounter = Util::getMS(); while ((Util::getMS() - activityCounter) < 10000){//10 second timeout @@ -203,7 +203,7 @@ namespace Mist { } void Input::parseHeader(){ - DEBUG_MSG(DLVL_DEVEL,"Parsing the header"); + DEBUG_MSG(DLVL_DONTEVEN,"Parsing the header"); //Select all tracks for parsing header selectedTracks.clear(); std::stringstream trackSpec; diff --git a/src/output/output.cpp b/src/output/output.cpp index 51ec990d..65a09844 100644 --- a/src/output/output.cpp +++ b/src/output/output.cpp @@ -494,7 +494,7 @@ namespace Mist { if (wantRequest){ if ((firstData && myConn.Received().size()) || myConn.spool()){ firstData = false; - DEBUG_MSG(DLVL_VERYHIGH, "OnRequest"); + DEBUG_MSG(DLVL_DONTEVEN, "OnRequest"); onRequest(); }else{ if (!isBlocking && !parseData){ @@ -507,7 +507,7 @@ namespace Mist { initialize(); } if ( !sentHeader){ - DEBUG_MSG(DLVL_VERYHIGH, "SendHeader"); + DEBUG_MSG(DLVL_DONTEVEN, "SendHeader"); sendHeader(); } prepareNext();