Merge pull request #3463 from maiqingqiang/fix/xcode-compile-20201018

fix xcode compile bug
pull/3455/head^2
Kim Kulling 2020-10-29 13:39:13 +01:00 committed by GitHub
commit bff65f3827
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 4 additions and 4 deletions

View File

@ -260,7 +260,7 @@ void DefaultLogger::kill() {
// ---------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------
// Debug message // Debug message
void DefaultLogger::OnDebug(const char *message) { void DefaultLogger::OnDebug(const char *message) {
if (m_Severity < Logger::DEBUG) { if (m_Severity < Logger::DEBUGGING) {
return; return;
} }

View File

@ -73,9 +73,9 @@ public:
* @brief Log severity to describe the granularity of logging. * @brief Log severity to describe the granularity of logging.
*/ */
enum LogSeverity { enum LogSeverity {
NORMAL, //!< Normal granularity of logging NORMAL, ///< Normal granularity of logging
DEBUG, //!< Debug messages will be logged, but not verbose debug messages. DEBUGGING, ///< Debug messages will be logged, but not verbose debug messages.
VERBOSE //!< All messages will be logged VERBOSE ///< All messages will be logged
}; };
// ---------------------------------------------------------------------- // ----------------------------------------------------------------------