]> err.no Git - mapper/commitdiff
Display timing information only if debuging
authorKaj-Michael Lang <milang@angel.tal.org>
Mon, 15 Oct 2007 09:06:15 +0000 (12:06 +0300)
committerKaj-Michael Lang <milang@angel.tal.org>
Mon, 15 Oct 2007 09:06:15 +0000 (12:06 +0300)
src/osm-db.c

index e2190bd823cc56e90d59ecf93448cff381312af1..99302058e792f9bccd5437bf49be42dc81faf0ba 100644 (file)
@@ -16,6 +16,7 @@
 #include "osm-db.h"
 
 /* #define DEBUG_OSM */
+/* #define DEBUG_OSM_TIME */
 #define OSM_PLACE_CACHE_MAX_ITEMS (64)
 
 #define OSM_DB_PROGRESS_NUM (10000)
@@ -434,7 +435,9 @@ if (SQLITE_OK != sqlite3_bind_int(sql.select_way2, 1, lat) ||
        return NULL;
 }
 
+#ifdef DEBUG_OSM_TIME
 g_timer_start(dbt);
+#endif
 
 while (SQLITE_ROW == sqlite3_step(sql.select_way2)) {
        guint32 dist;
@@ -459,8 +462,10 @@ while (SQLITE_ROW == sqlite3_step(sql.select_way2)) {
        ways=g_list_prepend(ways, w);
 }
 
+#ifdef DEBUG_OSM_TIME
 g_timer_stop(dbt);
 g_printf("Query took: %f sec, found: %d ways\n", g_timer_elapsed(dbt, &tms), wc);
+#endif
 
 return ways;
 }