Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Initializing logs once and only once.
[simgrid.git] / src / xbt / module.c
index d435369..0c90ca5 100644 (file)
@@ -35,7 +35,10 @@ struct xbt_module_ {
 
 void 
 xbt_init(int *argc, char **argv) {
-   xbt_init_defaultlog(argc, argv, NULL);
+  static int first_run = 1;
+  if(first_run)
+    xbt_init_defaultlog(argc, argv, NULL);
+  first_run = 0;
 }
 
 /**