From: mquinson Date: Fri, 2 Jun 2006 00:18:10 +0000 (+0000) Subject: cosmetics X-Git-Tag: v3.3~3007 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/6a7e89de7375168a45eca76ca83d97fdc3b6582f?ds=sidebyside cosmetics git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2351 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/amok/Bandwidth/bandwidth.c b/src/amok/Bandwidth/bandwidth.c index c7608b9d7f..aea3093a5e 100644 --- a/src/amok/Bandwidth/bandwidth.c +++ b/src/amok/Bandwidth/bandwidth.c @@ -316,6 +316,7 @@ int amok_bw_cb_bw_handshake(gras_msg_cb_ctx_t ctx, tooshort = 1; free(request); request = (bw_request_t)payload; + VERB0("Return the reasking RPC"); gras_msg_rpcreturn(60,ctx_reask,NULL); } gras_msg_cb_ctx_free(ctx_reask); diff --git a/src/gras/Msg/msg.c b/src/gras/Msg/msg.c index e8f1773e71..3d1293a186 100644 --- a/src/gras/Msg/msg.c +++ b/src/gras/Msg/msg.c @@ -365,7 +365,7 @@ static int gras_msg_wait_or_filter(gras_msg_t msg, void *ctx) { xbt_dynar_t dyn=(xbt_dynar_t)ctx; int res = xbt_dynar_member(dyn,msg->type); if (res) - VERB0("Got matching message"); + VERB1("Got matching message (type=%s)",msg->type->name); else VERB0("Got message not matching our expectations"); return res; @@ -392,7 +392,7 @@ void gras_msg_wait_or(double timeout, void *payload) { s_gras_msg_t msg; - INFO1("Wait %f seconds for several message types",timeout); + VERB1("Wait %f seconds for several message types",timeout); gras_msg_wait_ext(timeout, NULL, NULL, &gras_msg_wait_or_filter, (void*)msgt_want,