Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Automatic update
[simgrid.git] / src / xbt / module.c
index aa5a0bb..cbad5ef 100644 (file)
@@ -27,13 +27,13 @@ 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. */
+/** @brief Initialize the xbt mechanisms. */
 void
 xbt_init_defaultlog(int *argc,char **argv, const char *defaultlog) {
   static short int first_run = 1;
@@ -41,12 +41,12 @@ xbt_init_defaultlog(int *argc,char **argv, const char *defaultlog) {
     return;
   
   first_run = 0;
-  INFO0("Initialize XBT");
+  VERB0("Initialize XBT");
   
   xbt_log_init(argc,argv,defaultlog);
 }
 
-/** @brief Finalize the xbt mecanisms. */
+/** @brief Finalize the xbt mechanisms. */
 void 
 xbt_exit(){
   xbt_log_exit();