Logo AND Algorithmique Numérique Distribuée

Public GIT Repository
Tell who sent the discarded messages
authormquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 29 May 2006 09:32:00 +0000 (09:32 +0000)
committermquinson <mquinson@48e7efb5-ca39-0410-a469-dd3cf9ba447f>
Mon, 29 May 2006 09:32:00 +0000 (09:32 +0000)
git-svn-id: svn+ssh://scm.gforge.inria.fr/svn/simgrid/simgrid/trunk@2305 48e7efb5-ca39-0410-a469-dd3cf9ba447f

src/gras/Msg/msg.c

index a867919..037717b 100644 (file)
@@ -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;
   }