From: Arnaud Giersch Date: Thu, 27 Jul 2017 07:26:54 +0000 (+0200) Subject: Remove useless guard. X-Git-Tag: v3_17~316^2~4^2~8 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/9db05dd3962f9900e071710579fea38c5acd4d2e Remove useless guard. The log category mc_main is now connected at the proper place. --- diff --git a/tools/doxygen/xbt_log_extract_hierarchy.pl b/tools/doxygen/xbt_log_extract_hierarchy.pl index adc5dfe4dc..01447433f5 100755 --- a/tools/doxygen/xbt_log_extract_hierarchy.pl +++ b/tools/doxygen/xbt_log_extract_hierarchy.pl @@ -116,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";