Debug message tweaks.
This commit is contained in:
parent
71e4a0cc26
commit
eb5c85c385
1 changed files with 2 additions and 1 deletions
|
@ -268,7 +268,7 @@ namespace Mist {
|
||||||
int pageIdLen = sprintf(pageId, "%s%d_%d", config->getString("streamname").c_str(), track, pageNum);
|
int pageIdLen = sprintf(pageId, "%s%d_%d", config->getString("streamname").c_str(), track, pageNum);
|
||||||
std::string tmpString(pageId, pageIdLen);
|
std::string tmpString(pageId, pageIdLen);
|
||||||
dataPages[track][pageNum].init(tmpString, it->second.dataSize, true);
|
dataPages[track][pageNum].init(tmpString, it->second.dataSize, true);
|
||||||
DEBUG_MSG(DLVL_DEVEL, "Buffering page %d through %d / %lu", pageNum, pageNum-1 + it->second.keyNum, myMeta.tracks[track].keys.size());
|
DEBUG_MSG(DLVL_DEVEL, "Buffering track %d page %d through %d", track, pageNum, pageNum-1 + it->second.keyNum);
|
||||||
|
|
||||||
std::stringstream trackSpec;
|
std::stringstream trackSpec;
|
||||||
trackSpec << track;
|
trackSpec << track;
|
||||||
|
@ -297,6 +297,7 @@ namespace Mist {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
DEBUG_MSG(DLVL_DEVEL, "Buffering track %d page %d through %d, completed", track, pageNum, pageNum-1 + it->second.keyNum);
|
||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue