]> granicus.if.org Git - icinga2/commitdiff
remoting: multicast messages into debug log
authorMichael Friedrich <michael.friedrich@netways.de>
Fri, 28 Jun 2013 17:50:23 +0000 (19:50 +0200)
committerMichael Friedrich <michael.friedrich@netways.de>
Fri, 28 Jun 2013 17:50:23 +0000 (19:50 +0200)
lib/remoting/endpointmanager.cpp

index af517bfd9eba44e6a673a768ffc74f84a60994d6..e49a94ef8b8dbb641b1ef74253e542acd59de007 100644 (file)
@@ -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);
        }