summaryrefslogtreecommitdiff
path: root/src/ipcpd/normal/graph.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/ipcpd/normal/graph.c')
-rw-r--r--src/ipcpd/normal/graph.c8
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--;
}