Merge pull request #3463 from maiqingqiang/fix/xcode-compile-20201018
fix xcode compile bugpull/3455/head^2
commit
bff65f3827
|
@ -260,7 +260,7 @@ void DefaultLogger::kill() {
|
|||
// ----------------------------------------------------------------------------------
|
||||
// Debug message
|
||||
void DefaultLogger::OnDebug(const char *message) {
|
||||
if (m_Severity < Logger::DEBUG) {
|
||||
if (m_Severity < Logger::DEBUGGING) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
@ -73,9 +73,9 @@ public:
|
|||
* @brief Log severity to describe the granularity of logging.
|
||||
*/
|
||||
enum LogSeverity {
|
||||
NORMAL, //!< Normal granularity of logging
|
||||
DEBUG, //!< Debug messages will be logged, but not verbose debug messages.
|
||||
VERBOSE //!< All messages will be logged
|
||||
NORMAL, ///< Normal granularity of logging
|
||||
DEBUGGING, ///< Debug messages will be logged, but not verbose debug messages.
|
||||
VERBOSE ///< All messages will be logged
|
||||
};
|
||||
|
||||
// ----------------------------------------------------------------------
|
||||
|
|
Loading…
Reference in New Issue