diff --git a/Participant.cs b/Participant.cs index 04d2900..c3184b8 100644 --- a/Participant.cs +++ b/Participant.cs @@ -73,7 +73,7 @@ namespace Passer.Control.Core { return null; } public RemoteParticipant AddParticipant(string ipAddress, int port) { - Console.WriteLine($"New Participant {ipAddress}:{port}"); + // Console.WriteLine($"New Participant {ipAddress}:{port}"); RemoteParticipant participant = new(ipAddress, port) { networkId = (byte)this.senders.Count }; diff --git a/RemoteParticipant.cs b/RemoteParticipant.cs index 989ec36..500bc41 100644 --- a/RemoteParticipant.cs +++ b/RemoteParticipant.cs @@ -37,7 +37,7 @@ namespace Passer.Control.Core { if (invokeEvent) Thing.InvokeNewThing(thing); - Console.Write($"Add thing {ipAddress}:{port}[{networkId}/{thing.id}]"); + // Console.Write($"Add thing {ipAddress}:{port}[{networkId}/{thing.id}]"); } }