X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/c9f0b6f33ed2290b8f99ca0d34646e6418dcd0ba..7628a0699cc6f92561dc39c0cff9bf2e06c59024:/src/xbt/module.c diff --git a/src/xbt/module.c b/src/xbt/module.c index aa5a0bba8d..a79815f017 100644 --- a/src/xbt/module.c +++ b/src/xbt/module.c @@ -27,26 +27,20 @@ struct xbt_module_ { xbt_module_finalize_fct_t finalize; }; -/** @brief Initialize the xbt mecanisms. */ +/** @brief Initialize the xbt mechanisms. */ void xbt_init(int *argc, char **argv) { - xbt_init_defaultlog(argc, argv, NULL); -} - -/** @brief Initialize the xbt mecanisms. */ -void -xbt_init_defaultlog(int *argc,char **argv, const char *defaultlog) { static short int first_run = 1; if (!first_run) return; first_run = 0; - INFO0("Initialize XBT"); + VERB0("Initialize XBT"); - xbt_log_init(argc,argv,defaultlog); + xbt_log_init(argc,argv); } -/** @brief Finalize the xbt mecanisms. */ +/** @brief Finalize the xbt mechanisms. */ void xbt_exit(){ xbt_log_exit();