Clarified valid page numbers debug message.

This commit is contained in:
Thulinma 2015-11-16 11:44:11 +01:00
parent e20761e8c7
commit c194396215

View file

@ -65,7 +65,7 @@ namespace Mist {
for (std::map<unsigned long, DTSCPageData>::iterator it = pagesByTrack[tid].begin(); it != pagesByTrack[tid].end(); it++){ for (std::map<unsigned long, DTSCPageData>::iterator it = pagesByTrack[tid].begin(); it != pagesByTrack[tid].end(); it++){
test << it->first << " "; test << it->first << " ";
} }
INFO_MSG("%s are", test.str().c_str()); INFO_MSG("Valid page numbers: %s", test.str().c_str());
///\return false if the pagenumber is not valid for this track ///\return false if the pagenumber is not valid for this track
return false; return false;
} }