Skip to content

Commit bf2dae2

Browse files
committed
lower debug msg noise
1 parent 6396571 commit bf2dae2

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/core/qgsmaprenderercustompainterjob.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -312,7 +312,7 @@ void QgsMapRendererCustomPainterJob::doRender()
312312
mPainter->drawImage( 0, 0, *mLabelJob.img );
313313
}
314314

315-
QgsDebugMsg( "Rendering completed in (seconds): " + QString( "%1" ).arg( renderTime.elapsed() / 1000.0 ) );
315+
QgsDebugMsgLevel( "Rendering completed in (seconds): " + QString( "%1" ).arg( renderTime.elapsed() / 1000.0 ), 2 );
316316
}
317317

318318

src/core/qgsmaprendererjob.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -405,7 +405,7 @@ void QgsMapRendererJob::cleanupJobs( LayerRenderJobs &jobs )
405405

406406
if ( mCache && !job.cached && !job.context.renderingStopped() && job.layer )
407407
{
408-
QgsDebugMsg( "caching image for " + ( job.layer ? job.layer->id() : QString() ) );
408+
QgsDebugMsgLevel( "caching image for " + ( job.layer ? job.layer->id() : QString() ), 2 );
409409
mCache->setCacheImage( job.layer->id(), *job.img, QList< QgsMapLayer * >() << job.layer );
410410
}
411411

0 commit comments

Comments
 (0)