From 8094e67d625cee857ad58ddec82ae189d005d122 Mon Sep 17 00:00:00 2001 From: mquinson Date: Mon, 29 May 2006 09:32:00 +0000 Subject: [PATCH] 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 --- src/gras/Msg/msg.c | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) 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; } -- 2.20.1