diff options
| author | Léo Lam <leo@innovatetechnologi.es> | 2017-08-16 22:24:24 +0200 |
|---|---|---|
| committer | Léo Lam <leo@innovatetechnologi.es> | 2017-08-16 22:27:29 +0200 |
| commit | 4b4e48818914d7c2b961428f03ca696801b70b2b (patch) | |
| tree | 5aeebfe6ae9d075f40c9b9c71bd357a256c16a6b /Source/Core/Common/Logging/LogManager.cpp | |
| parent | 918b0375e4e80ffd2f019a29789919f7cb0b27f3 (diff) | |
WFS: Use a separate log type for WFS related logs
Makes it easier to turn off general IOS messages that can be
distracting (e.g. /dev/net/ssl being opened hundreds of time...)
without losing the ability to view WFS messages.
Diffstat (limited to 'Source/Core/Common/Logging/LogManager.cpp')
| -rw-r--r-- | Source/Core/Common/Logging/LogManager.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
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"}; |
