diff --git a/mROA/Implementation/Backend/BasicExecutionModule.cs b/mROA/Implementation/Backend/BasicExecutionModule.cs index 200c948..f8b2fff 100644 --- a/mROA/Implementation/Backend/BasicExecutionModule.cs +++ b/mROA/Implementation/Backend/BasicExecutionModule.cs @@ -14,9 +14,6 @@ public class BasicExecutionModule : IExecuteModule public ICommandExecution Execute(ICallRequest command, IContextRepository _contextRepo) { - Console.WriteLine($"Executing command: {command.CommandId}"); - Thread.Sleep(100); - if (_methodRepo is null) throw new NullReferenceException("Method repository was not defined"); diff --git a/mROA/Implementation/Backend/JsonSerialisationModule.cs b/mROA/Implementation/Backend/JsonSerialisationModule.cs index d68e282..ea873c2 100644 --- a/mROA/Implementation/Backend/JsonSerialisationModule.cs +++ b/mROA/Implementation/Backend/JsonSerialisationModule.cs @@ -27,7 +27,6 @@ public class JsonSerialisationModule : ISerialisationModule command.Parameter = jsElement.Deserialize(parameter); } - Console.WriteLine($"Calling command execution {command.CommandId}"); var response = _executeModule!.Execute(command, _contextRepo); response.ClientId = clientId; var resultType = response is FinalCommandExecution diff --git a/mROA/Implementation/Frontend/JsonFrontendSerialisationModule.cs b/mROA/Implementation/Frontend/JsonFrontendSerialisationModule.cs index 3a9b30d..1c98a9b 100644 --- a/mROA/Implementation/Frontend/JsonFrontendSerialisationModule.cs +++ b/mROA/Implementation/Frontend/JsonFrontendSerialisationModule.cs @@ -41,13 +41,11 @@ public class JsonFrontendSerialisationModule throw new Exception("Interaction module not initialized"); var receiveMessage = await _interactionModule.ReceiveMessage(); - Console.WriteLine($"Received message: {Encoding.UTF8.GetString(receiveMessage)}"); var message = JsonSerializer.Deserialize(receiveMessage)!; while (message.Id != requestId) { receiveMessage = await _interactionModule.ReceiveMessage(); - Console.WriteLine($"Received message again: {Encoding.UTF8.GetString(receiveMessage)}"); message = JsonSerializer.Deserialize(receiveMessage)!; } @@ -66,7 +64,6 @@ public class JsonFrontendSerialisationModule if (_interactionModule is null) throw new Exception("Interaction module not initialized"); - Console.WriteLine($"PostCallRequest: {JsonSerializer.Serialize(callRequest)}"); var post = JsonSerializer.SerializeToUtf8Bytes(callRequest, callRequest.GetType()); _interactionModule.PostMessage(JsonSerializer.SerializeToUtf8Bytes(new NetworkMessage