1
0
mirror of https://github.com/RPCS3/rpcs3.git synced 2024-11-22 10:42:36 +01:00

Adjust cellMic log levels

This commit is contained in:
Nekotekina 2018-09-03 20:08:55 +03:00
parent ce4c4696dd
commit 5e556a87ff

View File

@ -46,7 +46,7 @@ void mic_thread::on_task()
s32 cellMicInit()
{
cellMic.trace("cellMicInit()");
cellMic.notice("cellMicInit()");
const auto micThread = fxm::make<mic_thread>();
micInited = true;
if (!micThread)
@ -57,7 +57,7 @@ s32 cellMicInit()
s32 cellMicEnd()
{
cellMic.trace("cellMicEnd()");
cellMic.notice("cellMicEnd()");
micInited = false;
const auto micThread = fxm::withdraw<mic_thread>();
if (!micThread)