Skip to content

Commit 00cf289

Browse files
rouaultnyalldawson
authored andcommittedApr 24, 2023
[OAPIF] Use QgsDebugMsgLevel(..., 2)
1 parent a19efb1 commit 00cf289

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎src/providers/wfs/oapif/qgsoapifprovider.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1101,11 +1101,11 @@ bool QgsOapifSharedData::computeServerFilter( QString &errorMsg )
11011101
{
11021102
if ( mFilterTranslationState == QgsOapifProvider::FilterTranslationState::PARTIAL )
11031103
{
1104-
QgsDebugMsg( QStringLiteral( "Part of the filter will be evaluated on client-side: %1" ).arg( mClientSideFilterExpression ) );
1104+
QgsDebugMsgLevel( QStringLiteral( "Part of the filter will be evaluated on client-side: %1" ).arg( mClientSideFilterExpression ), 2 );
11051105
}
11061106
else if ( mFilterTranslationState == QgsOapifProvider::FilterTranslationState::FULLY_CLIENT )
11071107
{
1108-
QgsDebugMsg( "Whole filter will be evaluated on client-side" );
1108+
QgsDebugMsgLevel( QStringLiteral( "Whole filter will be evaluated on client-side" ), 2 );
11091109
}
11101110
}
11111111
return ret;

0 commit comments

Comments
 (0)
Please sign in to comment.