Tweaked debug message levels for MistIn/Out processes
This commit is contained in:
parent
c7cef0260f
commit
9d2c71e4df
2 changed files with 4 additions and 4 deletions
|
@ -163,7 +163,7 @@ namespace Mist {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
DEBUG_MSG(DLVL_HIGH,"Pre-While");
|
DEBUG_MSG(DLVL_DONTEVEN,"Pre-While");
|
||||||
|
|
||||||
long long int activityCounter = Util::getMS();
|
long long int activityCounter = Util::getMS();
|
||||||
while ((Util::getMS() - activityCounter) < 10000){//10 second timeout
|
while ((Util::getMS() - activityCounter) < 10000){//10 second timeout
|
||||||
|
@ -203,7 +203,7 @@ namespace Mist {
|
||||||
}
|
}
|
||||||
|
|
||||||
void Input::parseHeader(){
|
void Input::parseHeader(){
|
||||||
DEBUG_MSG(DLVL_DEVEL,"Parsing the header");
|
DEBUG_MSG(DLVL_DONTEVEN,"Parsing the header");
|
||||||
//Select all tracks for parsing header
|
//Select all tracks for parsing header
|
||||||
selectedTracks.clear();
|
selectedTracks.clear();
|
||||||
std::stringstream trackSpec;
|
std::stringstream trackSpec;
|
||||||
|
|
|
@ -494,7 +494,7 @@ namespace Mist {
|
||||||
if (wantRequest){
|
if (wantRequest){
|
||||||
if ((firstData && myConn.Received().size()) || myConn.spool()){
|
if ((firstData && myConn.Received().size()) || myConn.spool()){
|
||||||
firstData = false;
|
firstData = false;
|
||||||
DEBUG_MSG(DLVL_VERYHIGH, "OnRequest");
|
DEBUG_MSG(DLVL_DONTEVEN, "OnRequest");
|
||||||
onRequest();
|
onRequest();
|
||||||
}else{
|
}else{
|
||||||
if (!isBlocking && !parseData){
|
if (!isBlocking && !parseData){
|
||||||
|
@ -507,7 +507,7 @@ namespace Mist {
|
||||||
initialize();
|
initialize();
|
||||||
}
|
}
|
||||||
if ( !sentHeader){
|
if ( !sentHeader){
|
||||||
DEBUG_MSG(DLVL_VERYHIGH, "SendHeader");
|
DEBUG_MSG(DLVL_DONTEVEN, "SendHeader");
|
||||||
sendHeader();
|
sendHeader();
|
||||||
}
|
}
|
||||||
prepareNext();
|
prepareNext();
|
||||||
|
|
Loading…
Add table
Reference in a new issue