refactor: Elevel => LogLevel enum class, use proper names for items in the class

This commit is contained in:
sithlord48
2025-07-07 17:44:21 -04:00
committed by Chris Rizzitello
parent 3472ff6ce5
commit 77bdde5434
27 changed files with 100 additions and 96 deletions

View File

@ -26,7 +26,7 @@ void MSWindowsDebugOutputter::show(bool showIfEmpty)
// do nothing
}
bool MSWindowsDebugOutputter::write(ELevel level, const char *msg)
bool MSWindowsDebugOutputter::write(LogLevel level, const char *msg)
{
OutputDebugString((std::string(msg) + "\n").c_str());
return true;