diff options
| author | Léo Lam <leo@leolam.fr> | 2020-11-20 02:21:57 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-11-20 02:21:57 +0100 |
| commit | bca82bb942ce55f3f83aeca26b5d7a80d0e1a265 (patch) | |
| tree | 855bad47113366a4abd1544b8bddfd1cc46855ee /Source/Core/Common/Logging | |
| parent | 5921a93d71dfc521facebd8dca910d4000bcafe7 (diff) | |
| parent | f44b13ffcd9a5a706680fca6e5d233fa4bb2aace (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.h | 1 | ||||
| -rw-r--r-- | Source/Core/Common/Logging/LogManager.cpp | 1 |
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"}; |
