aboutsummaryrefslogtreecommitdiff
path: root/src/mesh
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2014-03-21 23:06:50 +0000
committerBart Polot <bart@net.in.tum.de>2014-03-21 23:06:50 +0000
commit08c99d94026fa007ecba31e8209ff0f0fc30c0d3 (patch)
tree714acf75c1c35be3b043ac2a597ee18128369973 /src/mesh
parent6a3cb5ade0cebaf260e143741e72ad7fa4e21e57 (diff)
downloadgnunet-08c99d94026fa007ecba31e8209ff0f0fc30c0d3.tar.gz
gnunet-08c99d94026fa007ecba31e8209ff0f0fc30c0d3.zip
- use full path debug
Diffstat (limited to 'src/mesh')
-rw-r--r--src/mesh/gnunet-service-mesh_peer.c7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/mesh/gnunet-service-mesh_peer.c b/src/mesh/gnunet-service-mesh_peer.c
index 62d76b46d..05b924eda 100644
--- a/src/mesh/gnunet-service-mesh_peer.c
+++ b/src/mesh/gnunet-service-mesh_peer.c
@@ -1481,7 +1481,12 @@ GMP_connect (struct MeshPeer *peer)
1481 p = peer_get_best_path (peer); 1481 p = peer_get_best_path (peer);
1482 if (NULL != p) 1482 if (NULL != p)
1483 { 1483 {
1484 LOG (GNUNET_ERROR_TYPE_DEBUG, " %u hops\n", p->length); 1484 char *s;
1485
1486 s = path_2s (p);
1487 LOG (GNUNET_ERROR_TYPE_DEBUG, " path to use: %s\n", s);
1488 GNUNET_free (s);
1489
1485 c = GMT_use_path (t, p); 1490 c = GMT_use_path (t, p);
1486 if (NULL == c) 1491 if (NULL == c)
1487 { 1492 {