diff options
| author | Admiral H. Curtiss <pikachu025@gmail.com> | 2023-09-19 22:01:15 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-09-19 22:01:15 +0200 |
| commit | 579ccb0710935bac3e4751e6a1671f927d81de57 (patch) | |
| tree | 5d0f5de0cec99becf3e13488c687417e8b100260 /Source/Core/Common/Logging/LogManager.cpp | |
| parent | 9862ba4548f6dd03a83d7e919ffa2ae4124d190f (diff) | |
| parent | 911c469cf553ca6f754c7dc6c665e2c27924388f (diff) | |
Merge pull request #12160 from AdmiralCurtiss/achievement-log
Common/LogManager: Add logging category for Achievements.
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 80e7db895e..749117bc74 100644 --- a/Source/Core/Common/Logging/LogManager.cpp +++ b/Source/Core/Common/Logging/LogManager.cpp @@ -96,6 +96,7 @@ static size_t DeterminePathCutOffPoint() LogManager::LogManager() { // create log containers + m_log[LogType::ACHIEVEMENTS] = {"RetroAchievements", "Achievements"}; m_log[LogType::ACTIONREPLAY] = {"ActionReplay", "Action Replay"}; m_log[LogType::AUDIO] = {"Audio", "Audio Emulator"}; m_log[LogType::AUDIO_INTERFACE] = {"AI", "Audio Interface"}; |
