Skip to content

Commit

Permalink
Move QgsDebugCall to level 2 debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Nov 25, 2019
1 parent 83dd2aa commit 69e1b84
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/qgslogger.h
Expand Up @@ -136,11 +136,11 @@ class CORE_EXPORT QgsScopeLogger // clazy:exclude=rule-of-three
, _func( func )
, _line( line )
{
QgsLogger::debug( QStringLiteral( "Entering." ), 1, _file, _func, _line );
QgsLogger::debug( QStringLiteral( "Entering." ), 2, _file, _func, _line );
}
~QgsScopeLogger()
{
QgsLogger::debug( QStringLiteral( "Leaving." ), 1, _file, _func, _line );
QgsLogger::debug( QStringLiteral( "Leaving." ), 2, _file, _func, _line );
}
private:
const char *_file = nullptr;
Expand Down

0 comments on commit 69e1b84

Please sign in to comment.