X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/blobdiff_plain/ebf7be2320c9239e70924752b5d9833224113ab4..2e571a748f951d94a0d368237dd4875da54cea03:/examples/msg/mc/bugged1_while_liveness.c diff --git a/examples/msg/mc/bugged1_while_liveness.c b/examples/msg/mc/bugged1_while_liveness.c index 95b6e5be36..bc14d0b915 100644 --- a/examples/msg/mc/bugged1_while_liveness.c +++ b/examples/msg/mc/bugged1_while_liveness.c @@ -85,7 +85,7 @@ int client(int argc, char *argv[]) if(strcmp(my_mailbox, "1") == 0){ r = 1; cs = 0; - XBT_DEBUG("Propositions changed : r=1, cs=0"); + XBT_INFO("Propositions changed : r=1, cs=0"); } // wait the answer @@ -96,7 +96,7 @@ int client(int argc, char *argv[]) if((strcmp(my_mailbox, "1") == 0) && (strcmp("grant", kind) == 0)){ cs = 1; r = 0; - XBT_DEBUG("Propositions changed : r=0, cs=1"); + XBT_INFO("Propositions changed : r=0, cs=1"); } @@ -110,7 +110,7 @@ int client(int argc, char *argv[]) if(strcmp(my_mailbox, "1") == 0){ cs=0; r=0; - XBT_DEBUG("Propositions changed : r=0, cs=0"); + XBT_INFO("Propositions changed : r=0, cs=0"); } }