[GRASS-SVN] r45813 - grass/branches/develbranch_6/lib/vector/Vlib
svn_grass at osgeo.org
svn_grass at osgeo.org
Wed Mar 30 06:58:09 EDT 2011
Author: mmetz
Date: 2011-03-30 03:58:09 -0700 (Wed, 30 Mar 2011)
New Revision: 45813
Modified:
grass/branches/develbranch_6/lib/vector/Vlib/buffer.c
Log:
fix debug levels
Modified: grass/branches/develbranch_6/lib/vector/Vlib/buffer.c
===================================================================
--- grass/branches/develbranch_6/lib/vector/Vlib/buffer.c 2011-03-30 06:09:40 UTC (rev 45812)
+++ grass/branches/develbranch_6/lib/vector/Vlib/buffer.c 2011-03-30 10:58:09 UTC (rev 45813)
@@ -281,7 +281,7 @@
while (first < np - 2) {
/* find first loop which doesn't contain any other loop */
current = first;
- G_debug(0, "current: %d", current);
+ G_debug(5, "current: %d", current);
last = Points->n_points - 2;
lcount = 0;
sa = current;
@@ -294,7 +294,7 @@
current = sa + 1;
last = sb;
lcount++;
- G_debug(0, " current = %d, last = %d, lcount = %d", current,
+ G_debug(5, " current = %d, last = %d, lcount = %d", current,
last, lcount);
}
if (lcount == 0) {
@@ -308,7 +308,7 @@
if (sa < sa_max)
break;
*/
- G_debug(0, "sa: %d", sa);
+ G_debug(4, "sa: %d", sa);
/* remove loop if in buffer */
if ((sb - sa) == 1) { /* neighbouring lines overlap */
More information about the grass-commit
mailing list