Change some log levels to verbose

This commit is contained in:
Henrik Rydgård 2018-05-27 21:53:13 +02:00
parent d35de81a76
commit d7770307f3
2 changed files with 3 additions and 2 deletions

View File

@ -2086,7 +2086,7 @@ static u32 sceIoPollAsync(int id, u32 address) {
FileNode *f = __IoGetFd(id, error);
if (f) {
if (f->pendingAsyncResult) {
DEBUG_LOG(SCEIO, "%lli = sceIoPollAsync(%i, %08x): not ready", f->asyncResult, id, address);
VERBOSE_LOG(SCEIO, "%lli = sceIoPollAsync(%i, %08x): not ready", f->asyncResult, id, address);
return 1;
} else if (f->hasAsyncResult) {
DEBUG_LOG(SCEIO, "%lli = sceIoPollAsync(%i, %08x)", f->asyncResult, id, address);

View File

@ -342,7 +342,8 @@ static u32 sceUmdGetDriveStat()
}
//u32 retVal = PSP_UMD_INITED | PSP_UMD_READY | PSP_UMD_PRESENT;
u32 retVal = __KernelUmdGetState();
DEBUG_LOG(SCEIO,"0x%02x=sceUmdGetDriveStat()", retVal);
// This one can be very spammy.
VERBOSE_LOG(SCEIO,"0x%02x=sceUmdGetDriveStat()", retVal);
return retVal;
}