Skip to content

Commit

Permalink
[velux] fix: avoid warnings during non-existent properties. (openhab#…
Browse files Browse the repository at this point in the history
…7102)

Signed-off-by: Guenther Schreiner <[email protected]>
  • Loading branch information
gs4711 authored Mar 6, 2020
1 parent a2e9fdf commit 3bff3da
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ public static boolean exists(BaseBridgeHandler bridge, ChannelUID channelUID, St
Thing thingOfChannel = bridge.getThingByUID(channelTUID);
boolean exists = false;
if (thingOfChannel == null) {
LOGGER.warn("exists(): Channel {} does not belong to a thing.", channelUID);
LOGGER.debug("exists(): Channel {} does not belong to a thing.", channelUID);
} else {
if (thingOfChannel.getConfiguration().get(configName) != null) {
exists = true;
Expand Down

0 comments on commit 3bff3da

Please sign in to comment.