Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Sanitize channel naming convention
authoralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 18 May 2006 23:07:43 +0000 (23:07 +0000)
committeralegrand <alegrand@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Thu, 18 May 2006 23:07:43 +0000 (23:07 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2238 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/surf/maxmin.c

index 2bfa436..37ad510 100644 (file)
@@ -10,8 +10,8 @@
 #include "xbt/log.h"
 #include "maxmin_private.h"
 #include <stdlib.h>
-XBT_LOG_NEW_DEFAULT_SUBCATEGORY(maxmin, surf,
-                               "Logging specific to the SURF maxmin module");
+XBT_LOG_NEW_DEFAULT_SUBCATEGORY(surf_maxmin, surf,
+                               "Logging specific to SURF (maxmin)");
 
 lmm_system_t lmm_system_new(void)
 {
@@ -460,7 +460,7 @@ void lmm_solve(lmm_system_t sys)
   } while (xbt_swag_size(&(sys->saturated_variable_set)));
 
   sys->modified = 0;
-  if(XBT_LOG_ISENABLED(maxmin, xbt_log_priority_debug)) {
+  if(XBT_LOG_ISENABLED(surf_maxmin, xbt_log_priority_debug)) {
     lmm_print(sys);
   }
 }