From d57f771135f81003985d9332430332b93902f766 Mon Sep 17 00:00:00 2001 From: Sander Vrijders Date: Fri, 31 Mar 2017 17:37:18 +0200 Subject: ipcpd: normal: Fix logs This removes some logs in the graph component and replaces prints of uin64_t variables with an architecture agnostic variant. --- src/ipcpd/normal/graph.c | 8 -------- 1 file changed, 8 deletions(-) (limited to 'src/ipcpd/normal/graph.c') 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--; } -- cgit v1.2.3