aboutsummaryrefslogtreecommitdiff
path: root/src/transport/test_transport_api_unreliability_constant.c
diff options
context:
space:
mode:
authorMatthias Wachs <wachs@net.in.tum.de>2013-09-16 15:09:46 +0000
committerMatthias Wachs <wachs@net.in.tum.de>2013-09-16 15:09:46 +0000
commit75633a91d79403d921ef534bbb462697ce275733 (patch)
tree8a96e307815659d7531f5eeff46979c46cd7b47f /src/transport/test_transport_api_unreliability_constant.c
parent2de687b18d8d422b0f7305f06cbde83a6847455e (diff)
downloadgnunet-75633a91d79403d921ef534bbb462697ce275733.tar.gz
gnunet-75633a91d79403d921ef534bbb462697ce275733.zip
log level
Diffstat (limited to 'src/transport/test_transport_api_unreliability_constant.c')
-rw-r--r--src/transport/test_transport_api_unreliability_constant.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/transport/test_transport_api_unreliability_constant.c b/src/transport/test_transport_api_unreliability_constant.c
index 5217638c5..0aa42cba8 100644
--- a/src/transport/test_transport_api_unreliability_constant.c
+++ b/src/transport/test_transport_api_unreliability_constant.c
@@ -361,7 +361,7 @@ static void
361notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer) 361notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
362{ 362{
363 363
364 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' connected to us (%p)!\n", 364 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Peer `%4s' connected to us (%p)!\n",
365 GNUNET_i2s (peer), cls); 365 GNUNET_i2s (peer), cls);
366} 366}
367 367
@@ -369,7 +369,7 @@ notify_connect (void *cls, const struct GNUNET_PeerIdentity *peer)
369static void 369static void
370notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer) 370notify_disconnect (void *cls, const struct GNUNET_PeerIdentity *peer)
371{ 371{
372 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer `%4s' disconnected (%p)!\n", 372 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Peer `%4s' disconnected (%p)!\n",
373 GNUNET_i2s (peer), cls); 373 GNUNET_i2s (peer), cls);
374 if (th != NULL) 374 if (th != NULL)
375 GNUNET_TRANSPORT_notify_transmit_ready_cancel (th); 375 GNUNET_TRANSPORT_notify_transmit_ready_cancel (th);
@@ -390,7 +390,7 @@ testing_connect_cb (struct PeerContext *p1, struct PeerContext *p2, void *cls)
390{ 390{
391 char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id)); 391 char *p1_c = GNUNET_strdup (GNUNET_i2s (&p1->id));
392 392
393 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peers connected: %s <-> %s\n", p1_c, 393 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Peers connected: %s <-> %s\n", p1_c,
394 GNUNET_i2s (&p2->id)); 394 GNUNET_i2s (&p2->id));
395 GNUNET_free (p1_c); 395 GNUNET_free (p1_c);
396 396
@@ -406,7 +406,7 @@ start_cb (struct PeerContext *p, void *cls)
406 406
407 started++; 407 started++;
408 408
409 GNUNET_log (GNUNET_ERROR_TYPE_DEBUG, "Peer %u (`%s') started\n", p->no, 409 GNUNET_log (GNUNET_ERROR_TYPE_INFO, "Peer %u (`%s') started\n", p->no,
410 GNUNET_i2s (&p->id)); 410 GNUNET_i2s (&p->id));
411 411
412 if (started != 2) 412 if (started != 2)