[ahawastecollection] Change loglevel from warn to debug (#10800)
* 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>
This commit is contained in:
parent
7c5f60dae2
commit
8e4cb48a57
@ -175,11 +175,12 @@ public class AhaWasteCollectionHandler extends BaseThingHandler {
|
|||||||
*/
|
*/
|
||||||
private void updateChannels(final Map<WasteType, CollectionDate> collectionDates) {
|
private void updateChannels(final Map<WasteType, CollectionDate> collectionDates) {
|
||||||
for (final Channel channel : this.getThing().getChannels()) {
|
for (final Channel channel : this.getThing().getChannels()) {
|
||||||
|
|
||||||
final WasteType wasteType = getWasteTypeByChannel(channel.getUID().getId());
|
final WasteType wasteType = getWasteTypeByChannel(channel.getUID().getId());
|
||||||
|
|
||||||
final CollectionDate collectionDate = collectionDates.get(wasteType);
|
final CollectionDate collectionDate = collectionDates.get(wasteType);
|
||||||
if (collectionDate == null) {
|
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;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user