Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Merge pull request #12160 from AdmiralCurtiss/achievement-log
Common/LogManager: Add logging category for Achievements.
  • Loading branch information
AdmiralCurtiss committed Sep 19, 2023
2 parents 9862ba4 + 911c469 commit 579ccb0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions Source/Core/Common/Logging/Log.h
Expand Up @@ -12,6 +12,7 @@ namespace Common::Log
{
enum class LogType : int
{
ACHIEVEMENTS,
ACTIONREPLAY,
AUDIO,
AUDIO_INTERFACE,
Expand Down
1 change: 1 addition & 0 deletions Source/Core/Common/Logging/LogManager.cpp
Expand Up @@ -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"};
Expand Down

0 comments on commit 579ccb0

Please sign in to comment.