Updated log messages.

This commit is contained in:
Gunnar Beutner 2012-04-27 11:57:14 +02:00
parent 4d873b50fb
commit 6b4647a5dc
2 changed files with 2 additions and 3 deletions

View File

@ -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;
}

View File

@ -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();