diff options
| author | JosJuice <josjuice@gmail.com> | 2017-08-17 16:54:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2017-08-17 16:54:20 +0200 |
| commit | 4e40fad248db3dccad901cd200dbc96c03bfbb7f (patch) | |
| tree | 5aeebfe6ae9d075f40c9b9c71bd357a256c16a6b /Source/Core/Common | |
| parent | 918b0375e4e80ffd2f019a29789919f7cb0b27f3 (diff) | |
| parent | 4b4e48818914d7c2b961428f03ca696801b70b2b (diff) | |
Merge pull request #5936 from leoetlino/wfs-log
WFS: Use a separate log type for WFS related logs
Diffstat (limited to 'Source/Core/Common')
| -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 43451767df..7db7b39c9b 100644 --- a/Source/Core/Common/Logging/Log.h +++ b/Source/Core/Common/Logging/Log.h @@ -38,6 +38,7 @@ enum LOG_TYPE IOS_STM, IOS_USB, IOS_WC24, + IOS_WFS, IOS_WIIMOTE, MASTER_LOG, MEMMAP, diff --git a/Source/Core/Common/Logging/LogManager.cpp b/Source/Core/Common/Logging/LogManager.cpp index a18397a976..a4c7adb49a 100644 --- a/Source/Core/Common/Logging/LogManager.cpp +++ b/Source/Core/Common/Logging/LogManager.cpp @@ -106,6 +106,7 @@ LogManager::LogManager() m_log[LogTypes::IOS_NET] = {"IOS_NET", "IOS - Network"}; m_log[LogTypes::IOS_USB] = {"IOS_USB", "IOS - USB"}; m_log[LogTypes::IOS_WC24] = {"IOS_WC24", "IOS - WiiConnect24"}; + m_log[LogTypes::IOS_WFS] = {"IOS_WFS", "IOS - WFS"}; m_log[LogTypes::IOS_WIIMOTE] = {"IOS_WIIMOTE", "IOS - Wii Remote"}; m_log[LogTypes::MASTER_LOG] = {"*", "Master Log"}; m_log[LogTypes::MEMCARD_MANAGER] = {"MemCard Manager", "MemCard Manager"}; |
