Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
[trace] remove info messages from process migration test, update its tesh
[simgrid.git] / examples / msg / tracing / procmig.c
index d2f5647..165bd41 100644 (file)
@@ -24,7 +24,6 @@ static int emigrant(int argc, char *argv[])
     destination = (char*)MSG_task_get_data (task);
     MSG_task_destroy (task);
     if (!destination) break; //there is no destination, die
-    XBT_INFO("Migrating to %s", destination);
     MSG_process_migrate(MSG_process_self(), MSG_get_host_by_name(destination));
     MSG_process_sleep(2); // I am tired, have to sleep for 2 seconds
     free (destination);