X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/159ec4477f94c16e7da9894ff1cf87925f532b70..868ff295d4a5cb82e57929124037681ef638aed2:/src/xbt/graph.c diff --git a/src/xbt/graph.c b/src/xbt/graph.c index 184da8f8f9..61aee25789 100644 --- a/src/xbt/graph.c +++ b/src/xbt/graph.c @@ -20,7 +20,7 @@ -XBT_LOG_NEW_DEFAULT_SUBCATEGORY(graph, xbt, "Graph"); +XBT_LOG_NEW_DEFAULT_SUBCATEGORY(xbt_graph, xbt, "Graph"); @@ -86,12 +86,12 @@ xbt_edge_t xbt_graph_get_edge(xbt_graph_t g, xbt_node_t src, xbt_node_t dst) int cursor; xbt_dynar_foreach(src->out, cursor, edge) { - INFO3("%p = %p--%p",edge,edge->src,edge->dst); + DEBUG3("%p = %p--%p",edge,edge->src,edge->dst); if((edge->src==src) && (edge->dst==dst)) return edge; } if(!g->directed) { xbt_dynar_foreach(src->out, cursor, edge) { - INFO3("%p = %p--%p",edge,edge->src,edge->dst); + DEBUG3("%p = %p--%p",edge,edge->src,edge->dst); if((edge->dst==src) && (edge->src==dst)) return edge; } }