Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
oops, we broke non-model-checking builds yesterday. Sorry guys
[simgrid.git] / src / simix / smx_deployment.c
index d1cbbf6..c7e943c 100644 (file)
@@ -60,7 +60,7 @@ static void parse_process_finalize(void)
     arg->kill_time = kill_time;
     arg->properties = current_property_set;
 
-    XBT_INFO("Process %s(%s) will be started at time %f", arg->name,
+    XBT_DEBUG("Process %s(%s) will be started at time %f", arg->name,
            arg->hostname, start_time);
     SIMIX_timer_set(start_time, &SIMIX_process_create_from_wrapper, arg);
   } else {                      // start_time <= SIMIX_get_clock()
@@ -120,11 +120,11 @@ void SIMIX_launch_application(const char *file)
 
   surf_parse_open(file);
   TRY {
-         parse_status = surf_parse();
-         surf_parse_close();
-         xbt_assert(!parse_status, "Parse error at %s:%d", file,surf_parse_lineno);
+    parse_status = surf_parse();
+    surf_parse_close();
+    xbt_assert(!parse_status, "Parse error at %s:%d", file,surf_parse_lineno);
   } CATCH(e) {
-         xbt_die("Unrecoverable error at %s:%d: %s",
+    xbt_die("Unrecoverable error at %s:%d: %s",
                   file, surf_parse_lineno, e.msg);
   }
 }