Cleaning up strings before translation

This commit is contained in:
Tim Young 2015-11-16 15:57:39 -05:00
parent 3521c24263
commit 573537070a
1 changed files with 1 additions and 1 deletions

View File

@ -671,7 +671,7 @@ namespace EduNetworkBuilder
else
{
tPacket.AddMessage(DebugLevel.routing,"The Packet was destined for a different machine (MAC Address): Rejected");
tPacket.AddMessage(DebugLevel.debug, " Device MAC: " + MAC + " did not match packet: " + tPacket.destMAC);
tPacket.AddMessage(DebugLevel.debug, string.Format(" Device MAC: {0} did not match packet: {1}", MAC, tPacket.destMAC));
mynet = NB.GetNetwork();
nd = mynet.GetDeviceFromID(myID);
string hostname = "No Host";