Skip to content

Commit c9ca175

Browse files
committed
Less debug noise
1 parent 4c7eb83 commit c9ca175

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/core/qgsfeaturefiltermodel.cpp

-8
Original file line numberDiff line numberDiff line change
@@ -220,8 +220,6 @@ void QgsFeatureFilterModel::updateCompleter()
220220

221221
int firstRow = 0;
222222

223-
QgsDebugMsg( QStringLiteral( "Entries 1: %1 " ).arg( mEntries.size() ) );
224-
225223
// Move the extra entry to the first position
226224
if ( mExtraIdentifierValueIndex != -1 )
227225
{
@@ -239,26 +237,20 @@ void QgsFeatureFilterModel::updateCompleter()
239237
firstRow = 1;
240238
}
241239

242-
QgsDebugMsg( QStringLiteral( "Entries 2: %1 " ).arg( mEntries.size() ) );
243-
244240
// Remove all entries (except for extra entry if existent)
245241
beginRemoveRows( QModelIndex(), firstRow, mEntries.size() - firstRow );
246242
mEntries.remove( firstRow, mEntries.size() - firstRow );
247243
endRemoveRows();
248244

249-
QgsDebugMsg( QStringLiteral( "Entries 3: %1 " ).arg( mEntries.size() ) );
250-
251245
if ( currentEntryInNewList == -1 )
252246
{
253-
QgsDebugMsg( QStringLiteral( "Current value is NOT in new list" ) );
254247
beginInsertRows( QModelIndex(), 1, entries.size() + 1 );
255248
mEntries += entries;
256249
endInsertRows();
257250
setExtraIdentifierValueIndex( 0 );
258251
}
259252
else
260253
{
261-
QgsDebugMsg( QStringLiteral( "Current value is in new list" ) );
262254
if ( currentEntryInNewList != 0 )
263255
{
264256
beginInsertRows( QModelIndex(), 0, currentEntryInNewList - 1 );

0 commit comments

Comments
 (0)