@@ -317,16 +317,13 @@ QVariantMap QgsJoinByLocationSummaryAlgorithm::processAlgorithm( const QVariantM
317317
318318 if ( !f.hasGeometry () )
319319 {
320- qDebug () << " NO GEOMETRY" ;
321320 if ( !discardNonMatching )
322321 {
323322 // ensure consistent count of attributes - otherwise non matching
324323 // features will have incorrect attribute length
325324 // and provider may reject them
326- qDebug () << " OUTPUT FIELDS" << outputFields.size ();
327325 QgsAttributes outputAttributes = f.attributes ();
328326 outputAttributes.append ( nonMatchingJoinAttributes );
329- qDebug () << " OUTPUT ATTRS" << outputAttributes.size ();
330327 f.setAttributes ( outputAttributes );
331328 if ( !sink->addFeature ( f, QgsFeatureSink::FastInsert ) )
332329 throw QgsProcessingException ( writeFeatureError ( sink.get (), parameters, QStringLiteral ( " OUTPUT" ) ) );
@@ -384,10 +381,8 @@ QVariantMap QgsJoinByLocationSummaryAlgorithm::processAlgorithm( const QVariantM
384381 // ensure consistent count of attributes - otherwise non matching
385382 // features will have incorrect attribute length
386383 // and provider may reject them
387- qDebug () << " OUTPUT FIELDS" << outputFields.size ();
388384 QgsAttributes outputAttributes = f.attributes ();
389385 outputAttributes.append ( nonMatchingJoinAttributes );
390- qDebug () << " OUTPUT ATTRS" << outputAttributes.size ();
391386 f.setAttributes ( outputAttributes );
392387 if ( !sink->addFeature ( f, QgsFeatureSink::FastInsert ) )
393388 throw QgsProcessingException ( writeFeatureError ( sink.get (), parameters, QStringLiteral ( " OUTPUT" ) ) );
0 commit comments