[Minor] added logger when enabling interrupt fix

This commit is contained in:
Robert von Burg 2020-08-12 09:11:32 +02:00
parent aaf2e1a149
commit ea65b72e55
1 changed files with 1 additions and 0 deletions

View File

@ -157,6 +157,7 @@ public class PCF8574InputConnection extends SimplePlcConnection {
if (this.enableInterruptFix) {
this.interruptFixTask = this.plc.getExecutorPool().getScheduledExecutor("InterruptFix")
.scheduleWithFixedDelay(this::checkInterruptPin, 1, 1, TimeUnit.SECONDS);
logger.info("Enabled Interrupt Fix Task.");
}
return ok && super.connect();