Core: Reduce log spam on exit.
This doesn't need to be INFO.
This commit is contained in:
parent
718a1b3944
commit
83946eeef8
1 changed files with 2 additions and 2 deletions
|
@ -523,9 +523,9 @@ void KernelObjectPool::List() {
|
|||
char buffer[256];
|
||||
if (pool[i]) {
|
||||
pool[i]->GetQuickInfo(buffer, sizeof(buffer));
|
||||
INFO_LOG(SCEKERNEL, "KO %i: %s \"%s\": %s", i + handleOffset, pool[i]->GetTypeName(), pool[i]->GetName(), buffer);
|
||||
DEBUG_LOG(SCEKERNEL, "KO %i: %s \"%s\": %s", i + handleOffset, pool[i]->GetTypeName(), pool[i]->GetName(), buffer);
|
||||
} else {
|
||||
strcpy(buffer, "WTF? Zero Pointer");
|
||||
ERROR_LOG(SCEKERNEL, "KO %i: bad object", i + handleOffset);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue