Drop some debugging messages.
authorMichael Vrable <mvrable@cs.ucsd.edu>
Thu, 3 Dec 2009 21:41:15 +0000 (13:41 -0800)
committerMichael Vrable <mvrable@cs.ucsd.edu>
Thu, 3 Dec 2009 21:41:15 +0000 (13:41 -0800)
bluesky/inode.c
bluesky/s3store.c
bluesky/store.c

index 0c745e8..a264f35 100644 (file)
@@ -240,8 +240,6 @@ void bluesky_superblock_flush(BlueSkyFS *fs)
     bluesky_serialize_superblock(buf, fs);
     BlueSkyRCStr *data = bluesky_string_new_from_gstring(buf);
 
-    g_print("Syncing superblock...\n");
-
     BlueSkyStoreAsync *async = bluesky_store_async_new(fs->store);
     async->op = STORE_OP_PUT;
     async->key = g_strdup("superblock");
index bf7c7cd..336afc2 100644 (file)
@@ -59,7 +59,6 @@ static int s3store_put_handler(int bufferSize, char *buffer,
 static S3Status s3store_properties_callback(const S3ResponseProperties *properties,
                                      void *callbackData)
 {
-    g_print("(Properties callback)\n");
     return S3StatusOK;
 }
 
@@ -86,7 +85,6 @@ static void s3store_task(gpointer a, gpointer s)
     BlueSkyStoreAsync *async = (BlueSkyStoreAsync *)a;
     S3Store *store = (S3Store *)s;
 
-    g_print("Start task [key=%s]...\n", async->key);
     async->status = ASYNC_RUNNING;
 
     if (async->op == STORE_OP_GET) {
@@ -99,7 +97,6 @@ static void s3store_task(gpointer a, gpointer s)
         handler.responseHandler.completeCallback = s3store_response_callback;
         handler.getObjectDataCallback = s3store_get_handler;
 
-        g_print("Starting fetch of %s from S3...\n", async->key);
         S3_get_object(&store->bucket, async->key, NULL, 0, 0, NULL,
                       &handler, &info);
 
@@ -128,8 +125,6 @@ static void s3store_task(gpointer a, gpointer s)
         handler.responseHandler.completeCallback = s3store_response_callback;
         handler.putObjectDataCallback = s3store_put_handler;
 
-        g_print("Starting store of %s to S3 at %ld...\n",
-                async->key, bluesky_now_hires());
         S3_put_object(&store->bucket, async->key, encrypted->len, NULL, NULL,
                       &handler, &info);
 
@@ -138,7 +133,6 @@ static void s3store_task(gpointer a, gpointer s)
         async->result = 0;
     }
 
-    g_print("Finish task...\n");
     bluesky_store_async_mark_complete(async);
     bluesky_store_async_unref(async);
 }
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)