diff --git a/src/core/auth/qgsauthmanager.cpp b/src/core/auth/qgsauthmanager.cpp index e0b30ea8a9d6..418c98b2daca 100644 --- a/src/core/auth/qgsauthmanager.cpp +++ b/src/core/auth/qgsauthmanager.cpp @@ -2383,7 +2383,7 @@ void QgsAuthManager::dumpIgnoredSslErrorsCache_() QMutexLocker locker( mMutex.get() ); if ( !mIgnoredSslErrorsCache.isEmpty() ) { - QgsDebugError( QStringLiteral( "Ignored SSL errors cache items:" ) ); + QgsDebugMsgLevel( QStringLiteral( "Ignored SSL errors cache items:" ), 1 ); QHash >::const_iterator i = mIgnoredSslErrorsCache.constBegin(); while ( i != mIgnoredSslErrorsCache.constEnd() ) { @@ -2392,7 +2392,7 @@ void QgsAuthManager::dumpIgnoredSslErrorsCache_() { errs << QgsAuthCertUtils::sslErrorEnumString( err ); } - QgsDebugError( QStringLiteral( "%1 = %2" ).arg( i.key(), errs.join( ", " ) ) ); + QgsDebugMsgLevel( QStringLiteral( "%1 = %2" ).arg( i.key(), errs.join( ", " ) ), 1 ); ++i; } }