android: dsp_dsp: Move a noisy log statement to trace.

This commit is contained in:
bunnei 2019-10-14 22:35:19 -04:00 committed by xperia64
parent 6e8d5afde2
commit b552514e92

View File

@ -306,7 +306,7 @@ void DSP_DSP::ForceHeadphoneOut(Kernel::HLERequestContext& ctx) {
// that's waiting for an interrupt event. Immediately after this interrupt event, userland
// normally updates the state in the next region and increments the relevant frame counter by two.
void DSP_DSP::SignalInterrupt(InterruptType type, DspPipe pipe) {
LOG_DEBUG(Service_DSP, "called, type={}, pipe={}", static_cast<u32>(type),
LOG_TRACE(Service_DSP, "called, type={}, pipe={}", static_cast<u32>(type),
static_cast<u32>(pipe));
const auto& event = GetInterruptEvent(type, pipe);
if (event)