Skip to content

Commit

Permalink
COMP: Update ctkLogger to Prefer QT_NO_DEBUG instead of NDEBUG
Browse files Browse the repository at this point in the history
  • Loading branch information
jcfr committed Jan 16, 2024
1 parent 1b84e8c commit 28144ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Libs/Core/ctkLogger.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class ctkLoggerPrivate
//-----------------------------------------------------------------------------
ctkLoggerPrivate::ctkLoggerPrivate()
{
#ifndef NDEBUG
#ifndef QT_NO_DEBUG
this->LogLevel = ctkErrorLogLevel::LogLevel::Debug;
#else
this->LogLevel = ctkErrorLogLevel::LogLevel::Warning;
Expand Down

0 comments on commit 28144ba

Please sign in to comment.