Split BlueSky include files into public and private parts.
[bluesky.git] / bluesky / file.c
index 5f7d9cd..fa4705a 100644 (file)
@@ -10,7 +10,7 @@
 #include <glib.h>
 #include <string.h>
 
-#include "bluesky.h"
+#include "bluesky-private.h"
 
 /* Core filesystem: handling of regular files and caching of file data. */
 
@@ -154,7 +154,6 @@ void bluesky_block_fetch(BlueSkyFS *fs, BlueSkyBlock *block)
     if (block->type != BLUESKY_BLOCK_REF)
         return;
 
-    g_print("Fetching block from %s\n", block->ref);
     BlueSkyRCStr *string = bluesky_store_get(fs->store, block->ref);
 
     bluesky_string_unref(block->data);
@@ -176,7 +175,6 @@ void bluesky_block_flush(BlueSkyFS *fs, BlueSkyBlock *block)
     g_checksum_update(csum, data->data, data->len);
     gchar *name = g_strdup(g_checksum_get_string(csum));
 
-    g_print("Flushing block as %s\n", name);
     bluesky_store_put(fs->store, name, data);
     g_free(block->ref);
     block->ref = name;