mirror of
https://github.com/cemu-project/Cemu.git
synced 2025-07-06 06:51:18 +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
|
@ -33,7 +33,7 @@ void PatchErrorHandler::printError(class PatchGroup* patchGroup, sint32 lineNumb
|
|||
cemuLog_writeLineToLog(msg, true, true);
|
||||
m_anyErrorTriggered = true;
|
||||
|
||||
if (cafeLog_isLoggingFlagEnabled(LOG_TYPE_PATCHES))
|
||||
if (cemuLog_isLoggingEnabled(LogType::Patches))
|
||||
errorMessages.emplace_back(msg);
|
||||
}
|
||||
|
||||
|
@ -51,7 +51,7 @@ void PatchErrorHandler::showStageErrorMessageBox()
|
|||
{
|
||||
cemu_assert_debug(false); // graphic pack should always be set
|
||||
}
|
||||
if (cafeLog_isLoggingFlagEnabled(LOG_TYPE_PATCHES))
|
||||
if (cemuLog_isLoggingEnabled(LogType::Patches))
|
||||
{
|
||||
errorMsg.append("\n \nDetails:\n");
|
||||
for (auto& itr : errorMessages)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue