diff options
| author | altimumdelta <48530820+altimumdelta@users.noreply.github.com> | 2020-11-09 19:45:04 +0100 |
|---|---|---|
| committer | altimumdelta <48530820+altimumdelta@users.noreply.github.com> | 2020-11-10 17:17:43 +0100 |
| commit | f44b13ffcd9a5a706680fca6e5d233fa4bb2aace (patch) | |
| tree | 688fc0a78fe25b56e9bf926d1e6886d94c39f954 /Source/Core/Common/Logging | |
| parent | 43e2f0e88f80686c2b76dcba4241a7be64e7bf55 (diff) | |
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"}; |
