Skip to content

Commit

Permalink
Less noise
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Mar 26, 2020
1 parent d7e7d5d commit 03fd0f6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/providers/mssql/qgsmssqldataitems.cpp
Expand Up @@ -96,7 +96,7 @@ void QgsMssqlConnectionItem::stop()

void QgsMssqlConnectionItem::refresh()
{
QgsDebugMsg( "mPath = " + mPath );
QgsDebugMsgLevel( "mPath = " + mPath, 3 );
stop();

// read up the schemas and layers from database
Expand Down Expand Up @@ -514,7 +514,7 @@ QString QgsMssqlLayerItem::createUri()
mDisableInvalidGeometryHandling = QgsMssqlConnection::isInvalidGeometryHandlingDisabled( connItem->name() );
uri.setParam( QStringLiteral( "disableInvalidGeometryHandling" ), mDisableInvalidGeometryHandling ? QStringLiteral( "1" ) : QStringLiteral( "0" ) );

QgsDebugMsg( QStringLiteral( "layer uri: %1" ).arg( uri.uri() ) );
QgsDebugMsgLevel( QStringLiteral( "layer uri: %1" ).arg( uri.uri() ), 3 );
return uri.uri();
}

Expand Down

0 comments on commit 03fd0f6

Please sign in to comment.