Skip to content

Commit

Permalink
fix: Log Lumi Unhandled key as debug Koenkk/zigbee2mqtt#24081
Browse files Browse the repository at this point in the history
  • Loading branch information
Koenkk committed Sep 25, 2024
1 parent a13c401 commit 1c4df30
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/lumi.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2731,7 +2731,7 @@ export const fromZigbee = {
logger.debug(`Unhandled key ${key} = ${value}`, 'zhc:lumi:trv');
break;
default:
logger.warning(`Unknown key ${key} = ${value}`, 'zhc:lumi:trv');
logger.debug(`Unknown key ${key} = ${value}`, 'zhc:lumi:trv');
}
});
return result;
Expand Down Expand Up @@ -3997,7 +3997,7 @@ export const toZigbee = {
break;
}
default: // Unknown key
logger.warning(`Unhandled key ${key}`, 'zhc:lumi:trv');
logger.debug(`Unhandled key ${key}`, 'zhc:lumi:trv');
}
},
convertGet: async (entity, key, meta) => {
Expand Down

0 comments on commit 1c4df30

Please sign in to comment.