- a few more logging entries for future debugging needs

This commit is contained in:
Mark Vejvoda
2011-01-28 02:32:55 +00:00
parent 4d9cfc105e
commit 9adf8bcc62
4 changed files with 10 additions and 22 deletions

View File

@@ -793,7 +793,7 @@ void ServerInterface::updateKeyframe(int frameCount) {
Chrono chrono;
chrono.start();
currentFrameCount = frameCount;
SystemFlags::OutputDebug(SystemFlags::debugNetwork,"In [%s::%s Line: %d] currentFrameCount = %d\n",__FILE__,__FUNCTION__,__LINE__,currentFrameCount);
SystemFlags::OutputDebug(SystemFlags::debugNetwork,"In [%s::%s Line: %d] currentFrameCount = %d, requestedCommands.size() = %d\n",__FILE__,__FUNCTION__,__LINE__,currentFrameCount,requestedCommands.size());
NetworkMessageCommandList networkMessageCommandList(frameCount);
while(requestedCommands.empty() == false) {
if(networkMessageCommandList.addCommand(&requestedCommands.back())){
@@ -1471,7 +1471,7 @@ void ServerInterface::simpleTask(BaseThread *callingThread) {
}
}
SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__);
//SystemFlags::OutputDebug(SystemFlags::debugSystem,"In [%s::%s Line %d]\n",__FILE__,__FUNCTION__,__LINE__);
}