summaryrefslogtreecommitdiff
path: root/src/common/log_manager.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-06-01 11:49:58 -0400
committerbunnei <ericbunnie@gmail.com>2014-06-01 11:49:58 -0400
commit00adbc7817194183dbea95ddfdb8678a5571c799 (patch)
tree40306165e2c7cddd978ecd0864d225c60f609270 /src/common/log_manager.h
parent5cd922d1514e629f1aa0d7083272e51decb61175 (diff)
log: updated MAX_LOGLEVEL to use correct log level enum type
Diffstat (limited to 'src/common/log_manager.h')
-rw-r--r--src/common/log_manager.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/log_manager.h b/src/common/log_manager.h
index 3e238dfa7..6d3d7c7ff 100644
--- a/src/common/log_manager.h
+++ b/src/common/log_manager.h
@@ -97,7 +97,7 @@ private:
~LogManager();
public:
- static u32 GetMaxLevel() { return MAX_LOGLEVEL; }
+ static u32 GetMaxLevel() { return LogTypes::MAX_LOGLEVEL; }
void Log(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type, const char* file, int line,
const char* function, const char *fmt, va_list args);