Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
cosmetics
[simgrid.git] / examples / msg / gtnets / gtnets.c
index 03aca73..e323b73 100644 (file)
@@ -49,9 +49,9 @@ int master(int argc, char *argv[])
   double start_time = MSG_get_clock();
   MSG_task_put(todo, slave, PORT_22);
   double end_time = MSG_get_clock();
-  INFO3("Send completed (to %s). Transfer time: %f\t Agregate bandwidth: %f\n",
+  INFO3("Send completed (to %s). Transfer time: %f\t Agregate bandwidth: %f",
        slave->name, (end_time - start_time), task_comm_size/(end_time-start_time));
-  printf("Completed peer: %s time: %f\n", slave->name, (end_time-start_time));
+  INFO2("Completed peer: %s time: %f", slave->name, (end_time-start_time));
   MSG_task_put(MSG_task_create("finalize", 0, 0, FINALIZE),
       slave, PORT_22);