aboutsummaryrefslogtreecommitdiff
path: root/src/cadet
diff options
context:
space:
mode:
authorBart Polot <bart@net.in.tum.de>2016-07-20 12:07:00 +0000
committerBart Polot <bart@net.in.tum.de>2016-07-20 12:07:00 +0000
commita603aaacbb3e786ab50644ca6fb49add439c8d8b (patch)
tree794bd1ec6d9baea97feed6783d3187fac16b4acc /src/cadet
parent649d7893e1e71f0c48d5ca03f3b036095a9b0de7 (diff)
downloadgnunet-a603aaacbb3e786ab50644ca6fb49add439c8d8b.tar.gz
gnunet-a603aaacbb3e786ab50644ca6fb49add439c8d8b.zip
- reduce INFO level debug
Diffstat (limited to 'src/cadet')
-rw-r--r--src/cadet/cadet_path.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/cadet/cadet_path.c b/src/cadet/cadet_path.c
index 277a7665a..79a498805 100644
--- a/src/cadet/cadet_path.c
+++ b/src/cadet/cadet_path.c
@@ -44,7 +44,7 @@ path_destroy_delayed (void *cls)
44 struct CadetPeer *peer; 44 struct CadetPeer *peer;
45 45
46 path->path_delete = NULL; 46 path->path_delete = NULL;
47 LOG (GNUNET_ERROR_TYPE_INFO, 47 LOG (GNUNET_ERROR_TYPE_DEBUG,
48 "Destroy delayed %p (%u)\n", 48 "Destroy delayed %p (%u)\n",
49 path, 49 path,
50 path->length); 50 path->length);
@@ -73,7 +73,7 @@ path_new (unsigned int length)
73 p->length = length; 73 p->length = length;
74 p->peers = GNUNET_malloc (length * sizeof (GNUNET_PEER_Id)); 74 p->peers = GNUNET_malloc (length * sizeof (GNUNET_PEER_Id));
75 } 75 }
76 LOG (GNUNET_ERROR_TYPE_INFO, "New path %p (%u)\n", p, p->length); 76 LOG (GNUNET_ERROR_TYPE_DEBUG, "New path %p (%u)\n", p, p->length);
77 return p; 77 return p;
78} 78}
79 79
@@ -154,7 +154,7 @@ path_invalidate (struct CadetPeerPath *p)
154 if (NULL != p->path_delete) 154 if (NULL != p->path_delete)
155 return; 155 return;
156 156
157 LOG (GNUNET_ERROR_TYPE_INFO, 157 LOG (GNUNET_ERROR_TYPE_DEBUG,
158 "Invalidating path %p (%u)\n", 158 "Invalidating path %p (%u)\n",
159 p, 159 p,
160 p->length); 160 p->length);
@@ -292,7 +292,7 @@ path_destroy (struct CadetPeerPath *p)
292 if (NULL == p) 292 if (NULL == p)
293 return GNUNET_OK; 293 return GNUNET_OK;
294 294
295 LOG (GNUNET_ERROR_TYPE_INFO, 295 LOG (GNUNET_ERROR_TYPE_DEBUG,
296 "destroying path %p (%u)\n", 296 "destroying path %p (%u)\n",
297 p, 297 p,
298 p->length); 298 p->length);