diff options
| author | 2014-05-06 17:18:20 -0400 | |
|---|---|---|
| committer | 2014-05-06 17:18:20 -0400 | |
| commit | 9db26df05fddd08575be459a12842a96e9f2ddc9 (patch) | |
| tree | 5b07d6cfd801519dba7b39673d7e8d05904034e6 /src/common/log.h | |
| parent | commented out useless debug logs that just spammed console (diff) | |
| download | yuzu-9db26df05fddd08575be459a12842a96e9f2ddc9.tar.gz yuzu-9db26df05fddd08575be459a12842a96e9f2ddc9.tar.xz yuzu-9db26df05fddd08575be459a12842a96e9f2ddc9.zip | |
- added better SVC logging
- added stubs for GetResourceLimit and GetResourceLimitCurrentValues SVCs
Diffstat (limited to 'src/common/log.h')
| -rw-r--r-- | src/common/log.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/log.h b/src/common/log.h index 02db8bd55..ffc727a27 100644 --- a/src/common/log.h +++ b/src/common/log.h | |||
| @@ -54,7 +54,7 @@ enum LOG_TYPE { | |||
| 54 | WII_IPC_FILEIO, | 54 | WII_IPC_FILEIO, |
| 55 | WII_IPC_HID, | 55 | WII_IPC_HID, |
| 56 | WII_IPC_HLE, | 56 | WII_IPC_HLE, |
| 57 | WII_IPC_NET, | 57 | SVC, |
| 58 | NDMA, | 58 | NDMA, |
| 59 | HLE, | 59 | HLE, |
| 60 | RENDER, | 60 | RENDER, |
| @@ -88,10 +88,10 @@ void GenericLog(LOGTYPES_LEVELS level, LOGTYPES_TYPE type, | |||
| 88 | ; | 88 | ; |
| 89 | 89 | ||
| 90 | #if defined LOGGING || defined _DEBUG || defined DEBUGFAST | 90 | #if defined LOGGING || defined _DEBUG || defined DEBUGFAST |
| 91 | #define MAX_LOGLEVEL DEBUG_LEVEL | 91 | #define MAX_LOGLEVEL LogTypes::LDEBUG |
| 92 | #else | 92 | #else |
| 93 | #ifndef MAX_LOGLEVEL | 93 | #ifndef MAX_LOGLEVEL |
| 94 | #define MAX_LOGLEVEL WARNING_LEVEL | 94 | #define MAX_LOGLEVEL LogTypes::LWARNING |
| 95 | #endif // loglevel | 95 | #endif // loglevel |
| 96 | #endif // logging | 96 | #endif // logging |
| 97 | 97 | ||