Skip to content

Commit

Permalink
Silence debug noise
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed Feb 2, 2022
1 parent de73373 commit d03f6db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/core/qgsgml.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -383,8 +383,8 @@ QgsGmlStreamingParser::QgsGmlStreamingParser( const QList<LayerProperties> &laye
{
if ( alreadyFoundGeometry )
{
QgsDebugMsg( QStringLiteral( "Will ignore geometry field %1 from typename %2" ).
arg( mLayerProperties[i].mGeometryAttribute, mLayerProperties[i].mName ) );
QgsDebugMsgLevel( QStringLiteral( "Will ignore geometry field %1 from typename %2" ).
arg( mLayerProperties[i].mGeometryAttribute, mLayerProperties[i].mName ), 2 );
mLayerProperties[i].mGeometryAttribute.clear();
}
alreadyFoundGeometry = true;
Expand Down Expand Up @@ -879,7 +879,7 @@ void QgsGmlStreamingParser::startElement( const XML_Char *el, const XML_Char **a
}
else
{
QgsDebugMsg( QStringLiteral( "mEpsg = %1" ).arg( mEpsg ) );
QgsDebugMsgLevel( QStringLiteral( "mEpsg = %1" ).arg( mEpsg ), 2 );
}
}

Expand Down

0 comments on commit d03f6db

Please sign in to comment.