summaryrefslogtreecommitdiffstats
path: root/src/common/log.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-06-01 17:49:58 +0200
committerbunnei <ericbunnie@gmail.com>2014-06-01 17:49:58 +0200
commit00adbc7817194183dbea95ddfdb8678a5571c799 (patch)
tree40306165e2c7cddd978ecd0864d225c60f609270 /src/common/log.h
parentlog: updated GenericLog __attribute__ for newly added parameter (diff)
downloadyuzu-00adbc7817194183dbea95ddfdb8678a5571c799.tar
yuzu-00adbc7817194183dbea95ddfdb8678a5571c799.tar.gz
yuzu-00adbc7817194183dbea95ddfdb8678a5571c799.tar.bz2
yuzu-00adbc7817194183dbea95ddfdb8678a5571c799.tar.lz
yuzu-00adbc7817194183dbea95ddfdb8678a5571c799.tar.xz
yuzu-00adbc7817194183dbea95ddfdb8678a5571c799.tar.zst
yuzu-00adbc7817194183dbea95ddfdb8678a5571c799.zip
Diffstat (limited to 'src/common/log.h')
-rw-r--r--src/common/log.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/common/log.h b/src/common/log.h
index 3518d4e1d..a3c8bdde6 100644
--- a/src/common/log.h
+++ b/src/common/log.h
@@ -94,10 +94,10 @@ void GenericLog(LOGTYPES_LEVELS level, LOGTYPES_TYPE type, const char*file, int
;
#if defined LOGGING || defined _DEBUG || defined DEBUGFAST
-#define MAX_LOGLEVEL DEBUG_LEVEL
+#define MAX_LOGLEVEL LDEBUG
#else
#ifndef MAX_LOGLEVEL
-#define MAX_LOGLEVEL WARNING_LEVEL
+#define MAX_LOGLEVEL LWARNING
#endif // loglevel
#endif // logging
@@ -109,7 +109,7 @@ void GenericLog(LOGTYPES_LEVELS level, LOGTYPES_TYPE type, const char*file, int
// Let the compiler optimize this out
#define GENERIC_LOG(t, v, ...) { \
- if (v <= MAX_LOGLEVEL) \
+ if (v <= LogTypes::MAX_LOGLEVEL) \
GenericLog(v, t, __FILE__, __LINE__, __func__, __VA_ARGS__); \
}