Extending the testcases to use bluetooth
[oweals/gnunet.git] / src / transport / gnunet-service-transport_clients.c
index db2718f4e1613f86ce1e7084b5c66c4dda9e314b..c7c148fbdee9585c42b745b98eed42fcc8098d5e 100644 (file)
@@ -704,7 +704,12 @@ try_connect_if_allowed (void *cls, const struct GNUNET_PeerIdentity *peer,
                         int result)
 {
   if (GNUNET_OK != result)
+  {
+         GNUNET_log (GNUNET_ERROR_TYPE_DEBUG,
+                     "Blacklist refuses connection attempt to peer `%s'\n",
+                     GNUNET_i2s (peer));
     return;                     /* not allowed */
+  }
   GST_neighbours_try_connect (peer);
 }