Skip to content

Commit 38030fd

Browse files
committed
[attrtable] Be less verbose by default in debug mode
1 parent f867506 commit 38030fd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/gui/attributetable/qgsattributetablemodel.cpp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ bool QgsAttributeTableModel::loadFeatureAtId( QgsFeatureId fid ) const
7777

7878
void QgsAttributeTableModel::featureDeleted( QgsFeatureId fid )
7979
{
80-
QgsDebugMsg( QString( "(%2) fid: %1" ).arg( fid ).arg( mFeatureRequest.filterType() ) );
80+
QgsDebugMsgLevel( QString( "(%2) fid: %1" ).arg( fid ).arg( mFeatureRequest.filterType() ), 4 );
8181
mFieldCache.remove( fid );
8282

8383
int row = idToRow( fid );
@@ -132,7 +132,7 @@ bool QgsAttributeTableModel::removeRows( int row, int count, const QModelIndex &
132132

133133
void QgsAttributeTableModel::featureAdded( QgsFeatureId fid )
134134
{
135-
QgsDebugMsg( QString( "(%2) fid: %1" ).arg( fid ).arg( mFeatureRequest.filterType() ) );
135+
QgsDebugMsgLevel( QString( "(%2) fid: %1" ).arg( fid ).arg( mFeatureRequest.filterType() ), 4 );
136136
if ( loadFeatureAtId( fid ) && mFeatureRequest.acceptFeature( mFeat ) )
137137
{
138138
mFieldCache[ fid ] = mFeat.attribute( mCachedField );

0 commit comments

Comments
 (0)