summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Logging
diff options
context:
space:
mode:
authorLéo Lam <leo@leolam.fr>2020-11-20 02:21:57 +0100
committerGitHub <noreply@github.com>2020-11-20 02:21:57 +0100
commitbca82bb942ce55f3f83aeca26b5d7a80d0e1a265 (patch)
tree855bad47113366a4abd1544b8bddfd1cc46855ee /Source/Core/Common/Logging
parent5921a93d71dfc521facebd8dca910d4000bcafe7 (diff)
parentf44b13ffcd9a5a706680fca6e5d233fa4bb2aace (diff)
Merge pull request #9239 from altimumdelta/FFDUMP_Separate_Logging
FrameDump Logging: Separate log type and migrate to fmt
Diffstat (limited to 'Source/Core/Common/Logging')
-rw-r--r--Source/Core/Common/Logging/Log.h1
-rw-r--r--Source/Core/Common/Logging/LogManager.cpp1
2 files changed, 2 insertions, 0 deletions
diff --git a/Source/Core/Common/Logging/Log.h b/Source/Core/Common/Logging/Log.h
index 95f76b138a..926648760a 100644
--- a/Source/Core/Common/Logging/Log.h
+++ b/Source/Core/Common/Logging/Log.h
@@ -28,6 +28,7 @@ enum LOG_TYPE
DYNA_REC,
EXPANSIONINTERFACE,
FILEMON,
+ FRAMEDUMP,
GDB_STUB,
GPFIFO,
HOST_GPU,
diff --git a/Source/Core/Common/Logging/LogManager.cpp b/Source/Core/Common/Logging/LogManager.cpp
index 2255fc6f8e..6485db8eca 100644
--- a/Source/Core/Common/Logging/LogManager.cpp
+++ b/Source/Core/Common/Logging/LogManager.cpp
@@ -133,6 +133,7 @@ LogManager::LogManager()
m_log[DYNA_REC] = {"JIT", "JIT Dynamic Recompiler"};
m_log[EXPANSIONINTERFACE] = {"EXI", "Expansion Interface"};
m_log[FILEMON] = {"FileMon", "File Monitor"};
+ m_log[FRAMEDUMP] = {"FRAMEDUMP", "FrameDump"};
m_log[GDB_STUB] = {"GDB_STUB", "GDB Stub"};
m_log[GPFIFO] = {"GP", "GatherPipe FIFO"};
m_log[HOST_GPU] = {"Host GPU", "Host GPU"};