mirror of https://github.com/Icinga/icinga2.git
Updated log messages.
This commit is contained in:
parent
4d873b50fb
commit
6b4647a5dc
|
@ -65,7 +65,7 @@ int DemoComponent::DemoTimerHandler(const TimerEventArgs& tea)
|
|||
|
||||
int DemoComponent::HelloWorldRequestHandler(const NewRequestEventArgs& nrea)
|
||||
{
|
||||
Application::Log("Got 'hello world' from address:" + nrea.Sender->GetAddress() + ", identity:" + nrea.Sender->GetIdentity());
|
||||
Application::Log("Got 'hello world' from address=" + nrea.Sender->GetAddress() + ", identity=" + nrea.Sender->GetIdentity());
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
|
|
@ -137,8 +137,7 @@ int JsonRpcEndpoint::NewMessageHandler(const NewMessageEventArgs& nmea)
|
|||
|
||||
int JsonRpcEndpoint::ClientClosedHandler(const EventArgs& ea)
|
||||
{
|
||||
string address = GetAddress();
|
||||
Application::Log("Lost connection to endpoint: " + address);
|
||||
Application::Log("Lost connection to endpoint: identity=" + GetIdentity());
|
||||
|
||||
m_PendingCalls.clear();
|
||||
|
||||
|
|
Loading…
Reference in New Issue