]> err.no Git - libchamplain/commitdiff
Remove the debug used for profiling
authorEmmanuel Rodriguez <emmanuel.rodriguez@gmail.com>
Wed, 13 May 2009 18:34:38 +0000 (20:34 +0200)
committerPierre-Luc Beaudoin <pierre-luc@pierlux.com>
Tue, 19 May 2009 05:16:56 +0000 (01:16 -0400)
champlain/champlain-cache.c

index c67e7eb78d220edfb5bea3e5a6e369e5d2dee276..9d44ba7a80364e602cd8ae7e1e4e1801a9964119 100644 (file)
@@ -310,14 +310,9 @@ champlain_cache_fill_tile (ChamplainCache *self,
   GTimeVal *modified_time = NULL;
   int sql_rc = SQLITE_OK;
   gboolean cache_hit = FALSE;
-  GTimer *timer;
-  gulong microseconds;
 
   ChamplainCachePrivate *priv = GET_PRIVATE (self);
   
-  timer = g_timer_new ();
-  g_timer_start (timer);
-
   modified_time = g_new0 (GTimeVal, 1);
   filename = champlain_tile_get_filename (tile);
 
@@ -369,10 +364,6 @@ champlain_cache_fill_tile (ChamplainCache *self,
   champlain_tile_set_content (tile, actor, FALSE);
 
   inc_popularity (self, tile);
-  g_timer_stop (timer);
-  g_timer_elapsed (timer, &microseconds);
-  g_timer_destroy (timer);
-  g_print ("%s: %6lu %s hit:%s\n", __FUNCTION__, microseconds, filename, cache_hit ? "TRUE" : "FALSE");
 
 cleanup:
   sqlite3_reset (priv->stmt_select);