diff options
author | Sander Vrijders <sander.vrijders@ugent.be> | 2017-03-31 16:08:29 +0000 |
---|---|---|
committer | dimitri staessens <dimitri.staessens@ugent.be> | 2017-03-31 16:08:29 +0000 |
commit | d9d3d3010511a1893e5fffdfbc5378db59233a1e (patch) | |
tree | d1f820ba426f097f6ae466dfe6ddb5d003ec8563 /src/ipcpd/normal/graph.c | |
parent | 7b7f1dc538218d2b3ea198bb66d096a3bcfbcf21 (diff) | |
parent | d57f771135f81003985d9332430332b93902f766 (diff) | |
download | ouroboros-d9d3d3010511a1893e5fffdfbc5378db59233a1e.tar.gz ouroboros-d9d3d3010511a1893e5fffdfbc5378db59233a1e.zip |
Merged in sandervrijders/ouroboros/be-logs (pull request #446)
ipcpd: normal: Fix logs
Diffstat (limited to 'src/ipcpd/normal/graph.c')
-rw-r--r-- | src/ipcpd/normal/graph.c | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/src/ipcpd/normal/graph.c b/src/ipcpd/normal/graph.c index 5de7c15b..78ed203d 100644 --- a/src/ipcpd/normal/graph.c +++ b/src/ipcpd/normal/graph.c @@ -95,8 +95,6 @@ static struct edge * add_edge(struct vertex * vertex, list_add(&edge->next, &vertex->edges); - log_dbg("Added a new edge to the graph."); - return edge; } @@ -104,8 +102,6 @@ static void del_edge(struct edge * edge) { list_del(&edge->next); free(edge); - - log_dbg("Removed an edge of the graph."); } static struct vertex * add_vertex(struct graph * graph, @@ -132,8 +128,6 @@ static struct vertex * add_vertex(struct graph * graph, graph->nr_vertices++; - log_dbg("Added new vertex."); - return vertex; } @@ -152,8 +146,6 @@ static void del_vertex(struct graph * graph, free(vertex); - log_dbg("Removed a vertex from the graph."); - graph->nr_vertices--; } |