Skip to content

Commit d0c086c

Browse files
author
g_j_m
committedMay 15, 2006
Tidy up a few debugging messages
git-svn-id: http://svn.osgeo.org/qgis/trunk@5455 c8812cc2-4d05-0410-92ff-de0c093fc19c
1 parent 7ea4612 commit d0c086c

File tree

2 files changed

+1
-6
lines changed

2 files changed

+1
-6
lines changed
 

‎src/gui/qgisapp.cpp

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3212,21 +3212,16 @@ void QgisApp::measureArea()
32123212

32133213
void QgisApp::attributeTable()
32143214
{
3215-
std::cerr << ">> = " << std::endl;
32163215
QgsMapLayer *layer = mMapLegend->currentLayer();
3217-
std::cerr << ">> = " << std::endl;
32183216
if (layer)
32193217
{
3220-
std::cerr << ">>> = " << std::endl;
32213218
layer->table();
3222-
std::cerr << ">>> = " << std::endl;
32233219
}
32243220
else
32253221
{
32263222
QMessageBox::information(this, tr("No Layer Selected"),
32273223
tr("To open an attribute table, you must select a layer in the legend"));
32283224
}
3229-
std::cerr << ">> = " << std::endl;
32303225
}
32313226

32323227
void QgisApp::deleteSelected()

‎src/gui/qgsmaprender.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ void QgsMapRender::render(QPainter* painter)
185185

186186
if (mExtent.isEmpty())
187187
{
188-
QgsLogger::warning("empty extent... not rendering");
188+
QgsLogger::debug("empty extent... not rendering");
189189
return;
190190
}
191191

0 commit comments

Comments
 (0)
Please sign in to comment.