Skip to content

Commit

Permalink
Feature validation should not spam the log
Browse files Browse the repository at this point in the history
  • Loading branch information
m-kuhn committed Oct 20, 2017
1 parent 5288aed commit a01f153
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/gui/qgsmaptoolcapture.cpp
Expand Up @@ -737,7 +737,7 @@ void QgsMapToolCapture::validateGeometry()
connect( mValidator, &QgsGeometryValidator::errorFound, this, &QgsMapToolCapture::addError );
connect( mValidator, &QThread::finished, this, &QgsMapToolCapture::validationFinished );
mValidator->start();
emit messageEmitted( tr( "Validation started" ) );
QgsDebugMsgLevel( "Validation started", 4 );
}

void QgsMapToolCapture::addError( QgsGeometry::Error e )
Expand Down

0 comments on commit a01f153

Please sign in to comment.