mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-04 05:51:19 +12:00
Remove deprecated logging system and expose developer logging window (#825)
This commit is contained in:
parent
b8dec03cb5
commit
d903b2cf12
47 changed files with 148 additions and 283 deletions
|
@ -326,12 +326,12 @@ bool iosuCrypto_loadCertificate(uint32 id, std::wstring_view mlcSubpath, std::ws
|
|||
pkeyData = FileStream::LoadIntoMemory(pkeyPath);
|
||||
if (!pkeyData || pkeyData->empty())
|
||||
{
|
||||
cemuLog_force("Unable to load private key file {}", pkeyPath.generic_string());
|
||||
cemuLog_log(LogType::Force, "Unable to load private key file {}", pkeyPath.generic_string());
|
||||
return false;
|
||||
}
|
||||
else if ((pkeyData->size() % 16) != 0)
|
||||
{
|
||||
cemuLog_force("Private key file has invalid length. Possibly corrupted? File: {}", pkeyPath.generic_string());
|
||||
cemuLog_log(LogType::Force, "Private key file has invalid length. Possibly corrupted? File: {}", pkeyPath.generic_string());
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue