Remove too much debug output when loading attribute table (refs #14041)

This makes debug version much faster, probably not much difference in release version
This commit is contained in:
Martin Dobias 2016-01-23 20:40:59 +01:00
parent a618f85a96
commit fc086adb34

View File

@ -370,8 +370,6 @@ void QgsAttributeTableModel::loadLayer()
{
++i;
QgsDebugMsg( QString( "Next feature %1" ).arg( i ) );
if ( t.elapsed() > 1000 )
{
bool cancel = false;
@ -488,7 +486,6 @@ int QgsAttributeTableModel::fieldCol( int idx ) const
int QgsAttributeTableModel::rowCount( const QModelIndex &parent ) const
{
QgsDebugMsg( QString( "Row Count %1" ).arg( mRowIdMap.size() ) );
Q_UNUSED( parent );
return mRowIdMap.size();
}