Remove debug output

This commit is contained in:
Alessandro Pasotti 2018-09-28 11:02:08 +02:00
parent a02d448ba6
commit 9e9f0d6d5a

View File

@ -355,7 +355,7 @@ bool QgsSpatiaLiteFeatureIterator::prepareStatement( const QString &whereClause,
if ( limit >= 0 )
sql += QStringLiteral( " LIMIT %1" ).arg( limit );
qDebug() << sql;
// qDebug() << sql;
if ( sqlite3_prepare_v2( mHandle->handle(), sql.toUtf8().constData(), -1, &sqliteStatement, nullptr ) != SQLITE_OK )
{