Remove debugging messages when decrypting cloud log segments.
authorMichael Vrable <mvrable@cs.ucsd.edu>
Thu, 21 Oct 2010 21:28:56 +0000 (14:28 -0700)
committerMichael Vrable <mvrable@cs.ucsd.edu>
Thu, 21 Oct 2010 21:28:56 +0000 (14:28 -0700)
bluesky/cloudlog.c

index 116195c..e868d99 100644 (file)
@@ -533,8 +533,7 @@ void bluesky_cloudlog_decrypt(char *segment, size_t len, BlueSkyCryptKeys *keys)
         if (item_size > remaining_size)
             break;
         if (bluesky_crypt_block_decrypt(data, item_size, keys)) {
-            g_print("Decrypted valid cloud log item at offset %zd\n",
-                    data - segment);
+            /* TODO: Mark block as valid. */
         }
 
         data += item_size;