Fixed missing cast to string in debug message.

This slipped through on last commit.
This commit is contained in:
José de Paula Rodrigues Neto Assis 2020-06-02 16:40:45 -03:00 committed by Nyall Dawson
parent 0308d67005
commit 95f9187dac

View File

@ -2345,7 +2345,7 @@ bool QgsPostgresProvider::addFeatures( QgsFeatureList &flist, Flags flags )
if ( !mGeneratedValues.value( idx, QString() ).isEmpty() )
{
QgsDebugMsg( QStringLiteral( "Skipping field %1 (idx %2) which is GENERATED." ).arg( fieldname, idx ) );
QgsDebugMsg( QStringLiteral( "Skipping field %1 (idx %2) which is GENERATED." ).arg( fieldname, QString::number( idx ) ) );
continue;
}