Drop some debugging messages.
[bluesky.git] / bluesky / store.c
index 03d4c4a..7ca0402 100644 (file)
@@ -112,7 +112,6 @@ void bluesky_store_async_unref(BlueSkyStoreAsync *async)
         g_free(async);
         g_log("bluesky/store", G_LOG_LEVEL_DEBUG,
               "freeing async");
-        g_print("Freed async\n");
     }
 }
 
@@ -175,11 +174,6 @@ void bluesky_store_async_mark_complete(BlueSkyStoreAsync *async)
     }
 }
 
-static void test_notifier(gpointer a, gpointer u)
-{
-    g_print("Notifier called!\n");
-}
-
 void bluesky_store_async_submit(BlueSkyStoreAsync *async)
 {
     BlueSkyStore *store = async->store;
@@ -203,7 +197,6 @@ void bluesky_store_async_submit(BlueSkyStoreAsync *async)
     async->store->pending++;
     g_mutex_unlock(async->store->lock);
 
-    bluesky_store_async_add_notifier(async, test_notifier, NULL);
     store->impl->submit(store->handle, async);
 
     if (bluesky_options.synchronous_stores)