* 10786: Changed loglevel from warn to debug
Signed-off-by: Sönke Küper <soenkekueper@gmx.de>
* 10786: Spotless fix
Signed-off-by: Sönke Küper <soenkekueper@gmx.de>
Co-authored-by: Sönke Küper <soenkekueper@gmx.de>
*/
private void updateChannels(final Map<WasteType, CollectionDate> collectionDates) {
for (final Channel channel : this.getThing().getChannels()) {
+
final WasteType wasteType = getWasteTypeByChannel(channel.getUID().getId());
final CollectionDate collectionDate = collectionDates.get(wasteType);
if (collectionDate == null) {
- this.logger.warn("No collection dates found for waste type: {}", wasteType);
+ this.logger.debug("No collection dates found for waste type: {}", wasteType);
continue;
}