From dfb5a5af408e2e7b04aa811e00633422307ed5a0 Mon Sep 17 00:00:00 2001 From: Pascal Serrarens Date: Thu, 6 Feb 2025 17:33:21 +0100 Subject: [PATCH] Refactoring --- Participant.cs | 2 +- RemoteParticipant.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) 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}]"); } }