Browse Source

Remove unnecessary logging

Ivan Savenko 1 year ago
parent
commit
e59880a37c
1 changed files with 0 additions and 1 deletions
  1. 0 1
      client/media/CVideoHandler.cpp

+ 0 - 1
client/media/CVideoHandler.cpp

@@ -627,7 +627,6 @@ bool CVideoPlayer::openAndPlayVideoImpl(const VideoPath & name, const Point & po
 		auto timePointAfterPresent = boost::chrono::steady_clock::now();
 		auto timeSpentBusy = boost::chrono::duration_cast<boost::chrono::milliseconds>(timePointAfterPresent - lastTimePoint);
 
-		logGlobal->info("Sleeping for %d", (targetFrameTime - timeSpentBusy).count());
 		if(targetFrameTime > timeSpentBusy)
 			boost::this_thread::sleep_for(targetFrameTime - timeSpentBusy);