Skip to content

Commit

Permalink
lower debug msg noise
Browse files Browse the repository at this point in the history
  • Loading branch information
3nids committed Oct 15, 2018
1 parent 6396571 commit bf2dae2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/core/qgsmaprenderercustompainterjob.cpp
Expand Up @@ -312,7 +312,7 @@ void QgsMapRendererCustomPainterJob::doRender()
mPainter->drawImage( 0, 0, *mLabelJob.img );
}

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


Expand Down
2 changes: 1 addition & 1 deletion src/core/qgsmaprendererjob.cpp
Expand Up @@ -405,7 +405,7 @@ void QgsMapRendererJob::cleanupJobs( LayerRenderJobs &jobs )

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

Expand Down

0 comments on commit bf2dae2

Please sign in to comment.