Skip to content

Commit

Permalink
[OAPIF] Use QgsDebugMsgLevel(..., 2)
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault authored and nyalldawson committed Apr 24, 2023
1 parent a19efb1 commit 00cf289
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/wfs/oapif/qgsoapifprovider.cpp
Expand Up @@ -1101,11 +1101,11 @@ bool QgsOapifSharedData::computeServerFilter( QString &errorMsg )
{
if ( mFilterTranslationState == QgsOapifProvider::FilterTranslationState::PARTIAL )
{
QgsDebugMsg( QStringLiteral( "Part of the filter will be evaluated on client-side: %1" ).arg( mClientSideFilterExpression ) );
QgsDebugMsgLevel( QStringLiteral( "Part of the filter will be evaluated on client-side: %1" ).arg( mClientSideFilterExpression ), 2 );
}
else if ( mFilterTranslationState == QgsOapifProvider::FilterTranslationState::FULLY_CLIENT )
{
QgsDebugMsg( "Whole filter will be evaluated on client-side" );
QgsDebugMsgLevel( QStringLiteral( "Whole filter will be evaluated on client-side" ), 2 );
}
}
return ret;
Expand Down

0 comments on commit 00cf289

Please sign in to comment.