diff --git a/csharp/App/Backend/Websockets/RabbitMQManager.cs b/csharp/App/Backend/Websockets/RabbitMQManager.cs index fcca8a036..617f2eeae 100644 --- a/csharp/App/Backend/Websockets/RabbitMQManager.cs +++ b/csharp/App/Backend/Websockets/RabbitMQManager.cs @@ -68,7 +68,7 @@ public static class RabbitMqManager //Every 15 iterations(30 seconds), the installation sends a heartbit message to the queue if (receivedStatusMessage.Type == MessageType.Heartbit) { - Console.WriteLine("This is a heartbit message from installation: " + installationId + " Name of the file is "+ receivedStatusMessage.Timestamp); + //Console.WriteLine("This is a heartbit message from installation: " + installationId + " Name of the file is "+ receivedStatusMessage.Timestamp); if (receivedStatusMessage.Timestamp != 0) { @@ -167,7 +167,7 @@ public static class RabbitMqManager if (!WebsocketManager.InstallationConnections.ContainsKey(installationId)) { prevStatus = -2; - Console.WriteLine("Create new empty list for installation: " + installationId); + //Console.WriteLine("Create new empty list for installation: " + installationId); WebsocketManager.InstallationConnections[installationId] = new InstallationInfo { Status = receivedStatusMessage.Status,