Peter Wilson 2015-11-19 12:30:47 -06:00
commit 11e3fcfdd9
2 changed files with 2 additions and 2 deletions

View File

@ -331,7 +331,7 @@ namespace EduNetworkBuilder
if(movingTo == null) if(movingTo == null)
{ {
tPacket.AddMessage(DebugLevel.info, "Oops! We do not have anything at the end of the network wire. This should not happen!"); tPacket.AddMessage(DebugLevel.info, "Oops! We do not have anything at the end of the network wire. This should not happen!");
tPacket.Tracking.Status = hostname + " Nothing at far end of the wire. This should never happen.."; tPacket.Tracking.Status = hostname + string.Format(" Nothing at far end of the wire. This should never happen..");
tPacket.MyStatus = PacketStatus.finished_failed; tPacket.MyStatus = PacketStatus.finished_failed;
} }
else else

View File

@ -121,7 +121,7 @@ namespace EduNetworkBuilder
sourceMAC = source; sourceMAC = source;
destMAC = dest; destMAC = dest;
OutboundDestMAC = dest; OutboundDestMAC = dest;
Tracking.AddMessage(DebugLevel.info, start, theType.ToString() + "Packet Created"); Tracking.AddMessage(DebugLevel.info, start, theType.ToString() + string.Format("Packet Created"));
Tracking.AddMessage(DebugLevel.routing, start, string.Format(" MAC: {0} -> {1}", source, dest)); Tracking.AddMessage(DebugLevel.routing, start, string.Format(" MAC: {0} -> {1}", source, dest));
} }
else else