Browse Source

Vlib: fix debug level

git-svn-id: https://svn.osgeo.org/grass/grass/trunk@63645 15284696-431f-4ddb-bdfa-cd5b030d7da7
Markus Metz 10 years ago
parent
commit
e42900603b
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lib/vector/Vlib/snap.c

+ 2 - 2
lib/vector/Vlib/snap.c

@@ -259,9 +259,9 @@ Vect_snap_lines_list_kdtree(struct Map_info *Map, const struct ilist *List_lines
     }
     G_percent(line_idx, List_lines->n_values, 2); /* finish it */
 
-    G_debug(0, "KD Tree depth: %d", (int)KDTree->root->depth);
+    G_debug(1, "KD Tree depth: %d", (int)KDTree->root->depth);
     kdtree_optimize(KDTree, 2);
-    G_debug(0, "KD Tree depth: %d", (int)KDTree->root->depth);
+    G_debug(1, "KD Tree depth: %d", (int)KDTree->root->depth);
 
     npoints = point - 1;