From: mquinson Date: Tue, 26 May 2009 12:57:20 +0000 (+0000) Subject: more debugging X-Git-Tag: SVN~1336 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/bc1a66b66da508f9c386cabe86129ad1162d84d1 more debugging git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@6304 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/gras/Msg/gras_msg_exchange.c b/src/gras/Msg/gras_msg_exchange.c index ebc637b3cf..0c0c5acb05 100644 --- a/src/gras/Msg/gras_msg_exchange.c +++ b/src/gras/Msg/gras_msg_exchange.c @@ -35,7 +35,6 @@ const char *e_gras_msg_kind_names[e_gras_msg_kind_count]= void gras_msg_wait_ext_(double timeout, - gras_msgtype_t msgt_want, gras_socket_t expe_want, gras_msg_filter_t filter, @@ -375,8 +374,8 @@ gras_msg_handle(double timeOut) { } } if (!list) { - INFO3("No callback for message '%s' from %s:%d. Queue it for later gras_msg_wait() use.", - msg.type->name, + INFO4("No callback for message '%s' (type:%s) from %s:%d. Queue it for later gras_msg_wait() use.", + msg.type->name,e_gras_msg_kind_names[msg.kind], gras_socket_peer_name(msg.expe),gras_socket_peer_port(msg.expe)); xbt_dynar_push(pd->msg_waitqueue,&msg); return; /* FIXME: maybe we should call ourselves again until the end of the timer or a proper msg is got */