aboutsummaryrefslogtreecommitdiff
path: root/src/peerstore/gnunet-service-peerstore.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/peerstore/gnunet-service-peerstore.c')
-rw-r--r--src/peerstore/gnunet-service-peerstore.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/peerstore/gnunet-service-peerstore.c b/src/peerstore/gnunet-service-peerstore.c
index 418204850..082ab38ac 100644
--- a/src/peerstore/gnunet-service-peerstore.c
+++ b/src/peerstore/gnunet-service-peerstore.c
@@ -202,7 +202,7 @@ void watch_notifier (struct GNUNET_PEERSTORE_Record *record)
202{ 202{
203 struct GNUNET_HashCode keyhash; 203 struct GNUNET_HashCode keyhash;
204 204
205 GNUNET_log(GNUNET_ERROR_TYPE_INFO, "Sending update to any watchers.\n"); 205 GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Sending update to any watchers.\n");
206 PEERSTORE_hash_key(record->sub_system, 206 PEERSTORE_hash_key(record->sub_system,
207 record->peer, 207 record->peer,
208 record->key, 208 record->key,
@@ -279,6 +279,10 @@ void handle_iterate (void *cls,
279 GNUNET_SERVER_receive_done(client, GNUNET_SYSERR); 279 GNUNET_SERVER_receive_done(client, GNUNET_SYSERR);
280 return; 280 return;
281 } 281 }
282 GNUNET_log(GNUNET_ERROR_TYPE_DEBUG, "Iterate request: ss `%s', peer `%s', key `%s'\n",
283 record->sub_system,
284 (NULL == record->peer) ? "NULL" : GNUNET_i2s(record->peer),
285 (NULL == record->key) ? "NULL" : record->key);
282 GNUNET_SERVER_notification_context_add(nc, client); 286 GNUNET_SERVER_notification_context_add(nc, client);
283 if(GNUNET_OK == db->iterate_records(db->cls, 287 if(GNUNET_OK == db->iterate_records(db->cls,
284 record->sub_system, 288 record->sub_system,