More logspam reduction

This commit is contained in:
Henrik Rydgård
2026-02-10 15:05:29 +01:00
parent 88266eee50
commit dad8df3860
3 changed files with 4 additions and 3 deletions
+1 -1
View File
@@ -472,7 +472,7 @@ int SavedataParam::Save(SceUtilitySavedataParam* param, const std::string &saveD
int aligned_len = align16(cryptedSize);
if (aligned_len != cryptedSize) {
WARN_LOG(Log::sceUtility, "cryptedSize unaligned: %d (%d)", cryptedSize, cryptedSize & 15);
INFO_LOG(Log::sceUtility, "cryptedSize unaligned: %d (%d) (should be ok)", cryptedSize, cryptedSize & 15);
}
cryptedData = new u8[aligned_len + 0x10]();
+2 -1
View File
@@ -2322,7 +2322,8 @@ static int sceIoWaitAsync(int id, u32 address) {
return hleLogDebug(Log::sceIo, 0, "complete");
} else {
return hleLogWarning(Log::sceIo, SCE_KERNEL_ERROR_NOASYNC, "no async pending");
// This is normal in some games.
return hleLogInfo(Log::sceIo, SCE_KERNEL_ERROR_NOASYNC, "no async pending");
}
return 0; //completed
} else {
+1 -1
View File
@@ -1820,7 +1820,7 @@ static u32 sceMpegFlushAllStream(u32 mpeg) {
ringbuffer->packetsWritePos = 0;
}
return hleLogWarning(Log::Mpeg, 0, "UNIMPL");
return hleLogInfo(Log::Mpeg, 0, "UNIMPL");
}
static u32 sceMpegFlushStream(u32 mpeg, int stream_addr) {