Cut down on some logspam.

This commit is contained in:
Unknown W. Brackets 2017-03-19 07:44:44 -07:00
parent a1f59deafe
commit 88780fe1dd
2 changed files with 3 additions and 3 deletions

View File

@ -489,7 +489,7 @@ const HLEFunction *GetSyscallFuncPointer(MIPSOpcode op)
ERROR_LOG(HLE, "Syscall had bad function number %d in module %d - probably executing garbage", funcnum, modulenum);
return NULL;
}
INFO_LOG(HLE, "Compiling syscall to %s", moduleDB[modulenum].funcTable[funcnum].name);
DEBUG_LOG(HLE, "Compiling syscall to %s", moduleDB[modulenum].funcTable[funcnum].name);
return &moduleDB[modulenum].funcTable[funcnum];
}

View File

@ -157,7 +157,7 @@ static bool Memory_TryBase(u32 flags) {
position, view.size, base + view.virtual_address);
if (!*view.out_ptr) {
goto bail;
ERROR_LOG(MEMMAP, "Failed at view %d", i);
DEBUG_LOG(MEMMAP, "Failed at view %d", i);
}
#else
if (CanIgnoreView(view)) {
@ -167,7 +167,7 @@ static bool Memory_TryBase(u32 flags) {
*view.out_ptr = (u8*)g_arena.CreateView(
position, view.size, base + (view.virtual_address & MEMVIEW32_MASK));
if (!*view.out_ptr) {
ERROR_LOG(MEMMAP, "Failed at view %d", i);
DEBUG_LOG(MEMMAP, "Failed at view %d", i);
goto bail;
}
}