Merge pull request #6998 from lioncash/log
Common: Remove unnecessary ~9 year old LOGGING preprocessor define
This commit is contained in:
commit
40d3163b12
|
@ -4,13 +4,6 @@
|
||||||
|
|
||||||
#pragma once
|
#pragma once
|
||||||
|
|
||||||
// Force enable logging in the right modes. For some reason, something had changed
|
|
||||||
// so that debugfast no longer logged.
|
|
||||||
#if defined(_DEBUG) || defined(DEBUGFAST)
|
|
||||||
#undef LOGGING
|
|
||||||
#define LOGGING 1
|
|
||||||
#endif
|
|
||||||
|
|
||||||
#if defined(__GNUC__) || __clang__
|
#if defined(__GNUC__) || __clang__
|
||||||
// Disable "unused function" warnings for the ones manually marked as such.
|
// Disable "unused function" warnings for the ones manually marked as such.
|
||||||
#define UNUSED __attribute__((unused))
|
#define UNUSED __attribute__((unused))
|
||||||
|
|
|
@ -81,7 +81,7 @@ void GenericLog(LogTypes::LOG_LEVELS level, LogTypes::LOG_TYPE type, const char*
|
||||||
#endif
|
#endif
|
||||||
;
|
;
|
||||||
|
|
||||||
#if defined LOGGING || defined _DEBUG || defined DEBUGFAST
|
#if defined(_DEBUG) || defined(DEBUGFAST)
|
||||||
#define MAX_LOGLEVEL LogTypes::LOG_LEVELS::LDEBUG
|
#define MAX_LOGLEVEL LogTypes::LOG_LEVELS::LDEBUG
|
||||||
#else
|
#else
|
||||||
#ifndef MAX_LOGLEVEL
|
#ifndef MAX_LOGLEVEL
|
||||||
|
|
Loading…
Reference in New Issue