Fixed log string error

Signed-off-by: clinique <gael@lhopital.org>
This commit is contained in:
clinique 2025-01-04 10:53:17 +01:00
parent f0ce2fc9fe
commit eded3ca791

View File

@ -91,7 +91,7 @@ public class RefreshCapability extends Capability {
&& !ThingStatus.ONLINE.equals(accountHandler.getThing().getStatus())) {
delay = accountHandler.getTimeBeforeReconnect();
delay = delay != null ? delay.plus(ASAP) : OFFLINE_DELAY;
logger.debug("Bridge is not ONLINE, will wait for him to come-back {}", thingUID, delay);
logger.debug("Bridge is not ONLINE, will wait for him to come-back {}", delay);
} else {
delay = OFFLINE_DELAY;
logger.debug("Thing '{}' is not ONLINE, special refresh interval {} used", thingUID, delay);