internal void logDump(CommLink link)
 {
     Debug.Log("CommNetManager: ++ CommLink dump ++");
     Debug.Log("id: " + link.pathingID);
     Debug.Log("a.name: " + link.a.name);
     Debug.Log("b.name: " + link.b.name);
     Debug.Log("cost: " + link.cost);
     Debug.Log("hopType: " + link.hopType);
     Debug.Log("signal: " + link.signal);
     Debug.Log("signalStrength: " + link.signalStrength);
     Debug.Log("aCanRelay: " + link.aCanRelay);
     Debug.Log("bCanRelay: " + link.bCanRelay);
     Debug.Log("bothRelay: " + link.bothRelay);
     Debug.Log("Sum: " + link.ToString());
     Debug.Log("++++++++++++++++++ End dump +++++++");
 }