Skip to content

Commit

Permalink
Put a couple of debug statements inside #ifdef QGISDEBUG
Browse files Browse the repository at this point in the history
git-svn-id: http://svn.osgeo.org/qgis/trunk@5366 c8812cc2-4d05-0410-92ff-de0c093fc19c
  • Loading branch information
g_j_m committed Apr 24, 2006
1 parent 3712634 commit a50e1dc
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions src/providers/wms/qgswmsprovider.cpp
Expand Up @@ -909,12 +909,16 @@ bool QgsWmsProvider::parseCapabilitiesDOM(QByteArray const & xml, QgsWmsCapabili

if (e.tagName() == "Service")
{
#ifdef QGISDEBUG
std::cout << " Service." << std::endl;
#endif
parseService(e, capabilitiesProperty.service);
}
else if (e.tagName() == "Capability")
{
#ifdef QGISDEBUG
std::cout << " Capability." << std::endl;
#endif
parseCapability(e, capabilitiesProperty.capability);
}

Expand Down

0 comments on commit a50e1dc

Please sign in to comment.