From: mquinson Date: Mon, 29 May 2006 09:32:00 +0000 (+0000) Subject: Tell who sent the discarded messages X-Git-Tag: v3.3~3053 X-Git-Url: http://info.iut-bm.univ-fcomte.fr/pub/gitweb/simgrid.git/commitdiff_plain/8094e67d625cee857ad58ddec82ae189d005d122 Tell who sent the discarded messages git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2305 48e7efb5-ca39-0410-a469-dd3cf9ba447f --- diff --git a/src/gras/Msg/msg.c b/src/gras/Msg/msg.c index a867919b9c..037717b241 100644 --- a/src/gras/Msg/msg.c +++ b/src/gras/Msg/msg.c @@ -513,8 +513,9 @@ gras_msg_handle(double timeOut) { } } if (!list) { - INFO1("No callback for the incomming '%s' message. Discarded.", - msg.type->name); + INFO3("No callback for the incomming '%s' message (from %s:%d). Discarded.", + msg.type->name, + gras_socket_peer_name(msg.expe),gras_socket_peer_port(msg.expe)); WARN0("FIXME: gras_datadesc_free not implemented => leaking the payload"); return; }