Turn down logging for things that can be inferred.

If you see a thread switch for a vblank wait, you know what happened.
This commit is contained in:
Unknown W. Brackets 2013-03-10 22:56:24 -07:00
parent a34cf0bb79
commit 913dca69ef
4 changed files with 13 additions and 13 deletions

View file

@ -527,7 +527,7 @@ void Idle(int maxIdle)
}
}
DEBUG_LOG(CPU, "Idle for %i cycles! (%f ms)", cyclesDown, cyclesDown / (float)(CPU_HZ * 0.001f));
VERBOSE_LOG(CPU, "Idle for %i cycles! (%f ms)", cyclesDown, cyclesDown / (float)(CPU_HZ * 0.001f));
idledCycles += cyclesDown;
currentMIPS->downcount -= cyclesDown;