X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/a6f0160d9f260a762e0ddbc0fffa9fb45d53826c..3d0d626e19a7b79320e7d922c9c1dcf122076cea:/src/xbt/module.c diff --git a/src/xbt/module.c b/src/xbt/module.c index 6abd61c3bd..c2c9f85db0 100644 --- a/src/xbt/module.c +++ b/src/xbt/module.c @@ -50,7 +50,7 @@ gras_init_defaultlog(int *argc,char **argv, const char *defaultlog) { found = 1; opt=strchr(argv[i],'='); opt++; - TRYFAIL(gras_log_control_set(opt)); + gras_log_control_set(opt); DEBUG1("Did apply '%s' as log setting",opt); /*remove this from argv*/ for (j=i+1; j<*argc; j++) { @@ -62,7 +62,7 @@ gras_init_defaultlog(int *argc,char **argv, const char *defaultlog) { } } if (!found && defaultlog) { - TRYFAIL(gras_log_control_set(defaultlog)); + gras_log_control_set(defaultlog); } gras_process_init(); /* calls procdata_init, which calls dynar_new */