Skip to content

Commit

Permalink
More appropriate debug level
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 20, 2023
1 parent 2319f81 commit a51f8d1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/core/auth/qgsauthmanager.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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<QString, QSet<QSslError::SslError> >::const_iterator i = mIgnoredSslErrorsCache.constBegin();
while ( i != mIgnoredSslErrorsCache.constEnd() )
{
Expand All @@ -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;
}
}
Expand Down

0 comments on commit a51f8d1

Please sign in to comment.