aboutsummaryrefslogtreecommitdiff
path: root/src/fs/gnunet-service-fs.c
diff options
context:
space:
mode:
authorChristian Grothoff <christian@grothoff.org>2012-11-25 11:56:35 +0000
committerChristian Grothoff <christian@grothoff.org>2012-11-25 11:56:35 +0000
commitb38f372fc6fd535f591dce4068d42a4191f62cde (patch)
tree54891e83b215ab33e42e35799d05be1a106c8a72 /src/fs/gnunet-service-fs.c
parentbc10fa682ee01586921c996ceb6166282e1837d2 (diff)
downloadgnunet-b38f372fc6fd535f591dce4068d42a4191f62cde.tar.gz
gnunet-b38f372fc6fd535f591dce4068d42a4191f62cde.zip
-more logging
Diffstat (limited to 'src/fs/gnunet-service-fs.c')
-rw-r--r--src/fs/gnunet-service-fs.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/fs/gnunet-service-fs.c b/src/fs/gnunet-service-fs.c
index b48531d16..0f4d513ff 100644
--- a/src/fs/gnunet-service-fs.c
+++ b/src/fs/gnunet-service-fs.c
@@ -401,12 +401,16 @@ start_p2p_processing (void *cls, struct GSF_PendingRequest *pr,
401 case GNUNET_BLOCK_TYPE_FS_DBLOCK: 401 case GNUNET_BLOCK_TYPE_FS_DBLOCK:
402 case GNUNET_BLOCK_TYPE_FS_IBLOCK: 402 case GNUNET_BLOCK_TYPE_FS_IBLOCK:
403 /* the above block types MAY be available via 'stream' */ 403 /* the above block types MAY be available via 'stream' */
404 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
405 "Considering stream-based download for block\n");
404 GSF_stream_lookup_ (pr); 406 GSF_stream_lookup_ (pr);
405 break; 407 break;
406 case GNUNET_BLOCK_TYPE_FS_KBLOCK: 408 case GNUNET_BLOCK_TYPE_FS_KBLOCK:
407 case GNUNET_BLOCK_TYPE_FS_SBLOCK: 409 case GNUNET_BLOCK_TYPE_FS_SBLOCK:
408 case GNUNET_BLOCK_TYPE_FS_NBLOCK: 410 case GNUNET_BLOCK_TYPE_FS_NBLOCK:
409 /* the above block types are in the DHT */ 411 /* the above block types are in the DHT */
412 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
413 "Considering DHT-based search for block\n");
410 GSF_dht_lookup_ (pr); 414 GSF_dht_lookup_ (pr);
411 break; 415 break;
412 default: 416 default: