diff options
| author | Mat M <mathew1800@gmail.com> | 2016-10-02 16:51:44 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-10-02 16:51:44 -0400 |
| commit | ccfc0816974bde303ac62bfad019a41ff6fb13f0 (patch) | |
| tree | ab4fdc886468cf8bd4ccbb8618354e7b0af82a3d /Source/Core/VideoCommon/PixelEngine.cpp | |
| parent | 2e4ef57b47c1ef06ede4121d4b22ad60abe19082 (diff) | |
| parent | f0aa9b3751f4c3efeb3b1794991533d3d4616d03 (diff) | |
Merge pull request #4245 from aldelaro5/logs-levels-changes
Lots of Logs levels changes (also enable INFO level in every build)
Diffstat (limited to 'Source/Core/VideoCommon/PixelEngine.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/PixelEngine.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/VideoCommon/PixelEngine.cpp b/Source/Core/VideoCommon/PixelEngine.cpp index 5271f11d9a..6818efa7b2 100644 --- a/Source/Core/VideoCommon/PixelEngine.cpp +++ b/Source/Core/VideoCommon/PixelEngine.cpp @@ -288,7 +288,7 @@ static void RaiseEvent() // THIS IS EXECUTED FROM VIDEO THREAD void SetToken(const u16 token, const bool interrupt) { - INFO_LOG(PIXELENGINE, "VIDEO Backend raises INT_CAUSE_PE_TOKEN (btw, token: %04x)", token); + DEBUG_LOG(PIXELENGINE, "VIDEO Backend raises INT_CAUSE_PE_TOKEN (btw, token: %04x)", token); std::lock_guard<std::mutex> lk(s_token_finish_mutex); @@ -302,7 +302,7 @@ void SetToken(const u16 token, const bool interrupt) // THIS IS EXECUTED FROM VIDEO THREAD (BPStructs.cpp) when a new frame has been drawn void SetFinish() { - INFO_LOG(PIXELENGINE, "VIDEO Set Finish"); + DEBUG_LOG(PIXELENGINE, "VIDEO Set Finish"); std::lock_guard<std::mutex> lk(s_token_finish_mutex); |
