Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
Less noisy debug output
  • Loading branch information
m-kuhn committed Oct 24, 2017
1 parent ceb31fa commit 1b6088c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 6 deletions.
3 changes: 0 additions & 3 deletions src/app/pluginmanager/qgspluginmanager.cpp
Expand Up @@ -1117,17 +1117,14 @@ void QgsPluginManager::setCurrentTab( int idx )
{
if ( idx == PLUGMAN_TAB_SETTINGS )
{
QgsDebugMsg( "Switching current tab to Settings" );
mOptionsStackedWidget->setCurrentIndex( 2 );
}
else if ( idx == PLUGMAN_TAB_INSTALL_FROM_ZIP )
{
QgsDebugMsg( "Switching current tab to Install from ZIP" );
mOptionsStackedWidget->setCurrentIndex( 1 );
}
else
{
QgsDebugMsg( "Switching current tab to Plugins" );
mOptionsStackedWidget->setCurrentIndex( 0 );

QStringList acceptedStatuses;
Expand Down
2 changes: 1 addition & 1 deletion src/app/qgsidentifyresultsdialog.cpp
Expand Up @@ -616,7 +616,7 @@ void QgsIdentifyResultsDialog::addFeature( QgsVectorLayer *vlayer, const QgsFeat

tblResults->setRowCount( j + 1 );

QgsDebugMsg( QString( "adding item #%1 / %2 / %3 / %4" ).arg( j ).arg( vlayer->name(), vlayer->attributeDisplayName( i ), value2 ) );
QgsDebugMsgLevel( QStringLiteral( "adding item #%1 / %2 / %3 / %4" ).arg( j ).arg( vlayer->name(), vlayer->attributeDisplayName( i ), value2 ), 4 );

QTableWidgetItem *item = new QTableWidgetItem( vlayer->name() );
item->setData( Qt::UserRole, QVariant::fromValue( qobject_cast<QObject *>( vlayer ) ) );
Expand Down
4 changes: 2 additions & 2 deletions src/providers/postgres/qgspostgresconn.cpp
Expand Up @@ -1066,7 +1066,7 @@ bool QgsPostgresConn::openCursor( const QString &cursorName, const QString &sql
{
if ( mOpenCursors++ == 0 && !mTransaction )
{
QgsDebugMsg( QString( "Starting read-only transaction: %1" ).arg( mPostgresqlVersion ) );
QgsDebugMsgLevel( QString( "Starting read-only transaction: %1" ).arg( mPostgresqlVersion ), 4 );
if ( mPostgresqlVersion >= 80000 )
PQexecNR( QStringLiteral( "BEGIN READ ONLY" ) );
else
Expand All @@ -1084,7 +1084,7 @@ bool QgsPostgresConn::closeCursor( const QString &cursorName )

if ( --mOpenCursors == 0 && !mTransaction )
{
QgsDebugMsg( "Committing read-only transaction" );
QgsDebugMsgLevel( "Committing read-only transaction", 4 );
PQexecNR( QStringLiteral( "COMMIT" ) );
}

Expand Down

0 comments on commit 1b6088c

Please sign in to comment.