From 01a4755333985d5ca4f4ad26ed91cb87f4294bd4 Mon Sep 17 00:00:00 2001 From: Michael Friedrich Date: Fri, 28 Jun 2013 19:50:23 +0200 Subject: [PATCH] remoting: multicast messages into debug log --- lib/remoting/endpointmanager.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/lib/remoting/endpointmanager.cpp b/lib/remoting/endpointmanager.cpp index af517bfd9..e49a94ef8 100644 --- a/lib/remoting/endpointmanager.cpp +++ b/lib/remoting/endpointmanager.cpp @@ -274,7 +274,7 @@ void EndpointManager::SendAnycastMessage(const Endpoint::Ptr& sender, /** * Sends an anonymous message to all recipients who have a subscription for the - * message#s topic. + * message's topic. * * @param message The message. */ @@ -308,6 +308,7 @@ void EndpointManager::SendMulticastMessage(const Endpoint::Ptr& sender, if (sender == recipient) continue; + Log(LogDebug, "remoting", "Send multicast message using method " + method); if (recipient->HasSubscription(method)) SendUnicastMessage(sender, recipient, message); }