Skip to content

Commit

Permalink
[Gardena] reduced log level of expected Gardena exceptions (that are …
Browse files Browse the repository at this point in the history
…not related to a bug) (openhab#2947)

Signed-off-by: Kai Kreuzer <[email protected]>
  • Loading branch information
kaikreuzer authored and martinvw committed Dec 13, 2017
1 parent 5ad3e3d commit 9637f54
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,9 @@ protected void updateProperties(Device device) throws GardenaException {
public void channelLinked(ChannelUID channelUID) {
try {
updateChannel(channelUID);
} catch (Exception ex) {
} catch (GardenaDeviceNotFoundException | AccountHandlerNotAvailableException ex) {
logger.debug("{}", ex.getMessage(), ex);
} catch (GardenaException ex) {
logger.error("{}", ex.getMessage(), ex);
}
}
Expand Down

0 comments on commit 9637f54

Please sign in to comment.