Fix typo in log message

This commit is contained in:
Brandon Williams 2012-02-23 22:13:18 -06:00
parent fe6980eb7d
commit 4dcd15f48d
1 changed files with 2 additions and 2 deletions

View File

@ -98,7 +98,7 @@ public class IncomingTcpConnection extends Thread
{ {
// save the endpoint so gossip will reconnect to it // save the endpoint so gossip will reconnect to it
Gossiper.instance.addSavedEndpoint(from); Gossiper.instance.addSavedEndpoint(from);
logger.info("Received " + (isStream ? "streaming " : "") + "connection from newer protocol version. Ignorning"); logger.info("Received " + (isStream ? "streaming " : "") + "connection from newer protocol version. Ignoring");
} }
else if (msg != null) else if (msg != null)
{ {
@ -160,7 +160,7 @@ public class IncomingTcpConnection extends Thread
MessagingService.instance().receive(message, id); MessagingService.instance().receive(message, id);
return message; return message;
} }
logger.debug("Received connection from newer protocol version {}. Ignorning message", version); logger.debug("Received connection from newer protocol version {}. Ignoring message", version);
return null; return null;
} }