diff options
| author | aldelaro5 <aldelaro5@gmail.com> | 2018-03-22 03:18:25 -0400 |
|---|---|---|
| committer | aldelaro5 <aldelaro5@gmail.com> | 2018-03-22 14:57:28 -0400 |
| commit | c54e56793a8378962f585fda836bb66e61d8ecfc (patch) | |
| tree | d29c87259889ed3867514d570450404ff4a50dd5 /Source/Core/Common/Logging/LogManager.cpp | |
| parent | 5a4b59c4d1f9ee7ba0a992cda5c2d3d9e7ee394f (diff) | |
Add a log type for Symbols and move symbols related logs to it
This fix the awkwardness of having the symbols detection, parsing and loading related logs be in OS HLE while they don't have anything to do with that.
Diffstat (limited to 'Source/Core/Common/Logging/LogManager.cpp')
| -rw-r--r-- | Source/Core/Common/Logging/LogManager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/Source/Core/Common/Logging/LogManager.cpp b/Source/Core/Common/Logging/LogManager.cpp index a4c7adb49a..fcf606ad0b 100644 --- a/Source/Core/Common/Logging/LogManager.cpp +++ b/Source/Core/Common/Logging/LogManager.cpp @@ -120,6 +120,7 @@ LogManager::LogManager() m_log[LogTypes::POWERPC] = {"PowerPC", "IBM CPU"}; m_log[LogTypes::SERIALINTERFACE] = {"SI", "Serial Interface (SI)"}; m_log[LogTypes::SP1] = {"SP1", "Serial Port 1"}; + m_log[LogTypes::SYMBOLS] = {"SYMBOLS", "Symbols"}; m_log[LogTypes::VIDEO] = {"Video", "Video Backend"}; m_log[LogTypes::VIDEOINTERFACE] = {"VI", "Video Interface (VI)"}; m_log[LogTypes::WIIMOTE] = {"Wiimote", "Wiimote"}; |
