Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Merge branch 'master' of git+ssh://scm.gforge.inria.fr//gitroot/simgrid/simgrid
[simgrid.git] / tools / doxygen / xbt_log_extract_hierarchy.pl
index 28db032..0144743 100755 (executable)
@@ -94,6 +94,7 @@ while (my $file=<FILES>) {
     chomp $file;
     parse_file($file);         
 }
+parse_file("../include/xbt/sysdep.h"); 
 close FILES;
 
 # Display the tree, looking for disconnected elems    
@@ -115,9 +116,7 @@ sub display_subtree {
 display_subtree("XBT_LOG_ROOT_CAT","");
 
 map {
-    if ($_ ne "mc_main") { # This one is not in libsimgrid
-      warn "Category $_ does not seem to be connected.  Use XBT_LOG_CONNECT($_).\n";
-    }
+    warn "Category $_ does not seem to be connected.  Use XBT_LOG_CONNECT($_).\n";
 } grep {!defined $connected{$_}} sort keys %ancestor;
 map {
     warn "Category $_ does not seem to be connected to the root (anc=$ancestor{$_})\n";