Skip to content
Snippets Groups Projects
Commit 02178dfb authored by Alex Almanza's avatar Alex Almanza
Browse files

Remove debug messages

parent f12265f5
No related branches found
No related tags found
1 merge request!44Rapiscan latest
......@@ -229,7 +229,7 @@ public class RapiscanSensor extends AbstractSensorModule<RapiscanConfig> impleme
synchronized (this) {
while (isRunning) {
if(messageHandler.getTimeSinceLastMessage() < config.commSettings.connection.reconnectPeriod) {
getLogger().debug("TCP currently connected");
// getLogger().debug("TCP currently connected");
this.connectionStatusOutput.onNewMessage(true);
}
else {
......@@ -241,7 +241,7 @@ public class RapiscanSensor extends AbstractSensorModule<RapiscanConfig> impleme
// throw new RuntimeException(e);
// }
this.connectionStatusOutput.onNewMessage(false);
getLogger().debug("TCP disconnected");
// getLogger().debug("TCP disconnected");
}
try {
Thread.sleep(1000);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment