Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sanitize the XBT log chans, too. Arnaud did so for MSG+SURF, I did so for AMOK+GRAS...
[simgrid.git] / src / xbt / graph.c
index 184da8f..61aee25 100644 (file)
@@ -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;
     }
   }