Skip to content

Commit

Permalink
Fix debug noise
Browse files Browse the repository at this point in the history
  • Loading branch information
nyalldawson committed May 22, 2017
1 parent 9e331dc commit 2a5420a
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions src/core/symbology-ng/qgssymbollayerutils.cpp
Expand Up @@ -2661,11 +2661,7 @@ QgsStringMap QgsSymbolLayerUtils::parseProperties( QDomElement &element )
QDomElement e = element.firstChildElement();
while ( !e.isNull() )
{
if ( e.tagName() != QLatin1String( "prop" ) )
{
QgsDebugMsg( "unknown tag " + e.tagName() );
}
else
if ( e.tagName() == QLatin1String( "prop" ) )
{
QString propKey = e.attribute( QStringLiteral( "k" ) );
QString propValue = e.attribute( QStringLiteral( "v" ) );
Expand Down

0 comments on commit 2a5420a

Please sign in to comment.