- test and log for bug #0003423
[oweals/gnunet.git] / src / gnsrecord / gnsrecord_serialization.c
index 4b54bd36678cfa8e7c5b3d0fcdaa1707636a20e4..0c70ad24687aed6cc6b51b48fa6e926b8dc6fcf5 100644 (file)
@@ -119,11 +119,13 @@ GNUNET_GNSRECORD_records_serialize (unsigned int rd_count,
   off = 0;
   for (i=0;i<rd_count;i++)
   {
+#if 0
     LOG (GNUNET_ERROR_TYPE_DEBUG,
          "Serializing record %u with flags %d and expiration time %llu\n",
          i,
          rd[i].flags,
          (unsigned long long) rd[i].expiration_time);
+#endif
     rec.expiration_time = GNUNET_htonll (rd[i].expiration_time);
     rec.data_size = htonl ((uint32_t) rd[i].data_size);
     rec.record_type = htonl (rd[i].record_type);
@@ -175,11 +177,13 @@ GNUNET_GNSRECORD_records_deserialize (size_t len,
       return GNUNET_SYSERR;
     dest[i].data = &src[off];
     off += dest[i].data_size;
+#if 0
     LOG (GNUNET_ERROR_TYPE_DEBUG,
          "Deserialized record %u with flags %d and expiration time %llu\n",
          i,
          dest[i].flags,
          (unsigned long long) dest[i].expiration_time);
+#endif
   }
   return GNUNET_OK;
 }