Skip to content

Commit

Permalink
Changed unhandled message to debug
Browse files Browse the repository at this point in the history
  • Loading branch information
MortJC committed Apr 17, 2022
1 parent 5a0a55e commit 2b4e3b9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changes

## 1.5.3

- [Enhancement] Changed unhandled message to debug to reduce unnecessary logging

## 1.5.2

- [Fix] Removed unnecessary caching of device
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "homebridge-platform-orbit",
"version": "1.5.2",
"version": "1.5.3",
"description": "Orbit Irrigation System platform plugin for [HomeBridge](https://github.com/nfarina/homebridge).",
"dependencies": {
"bent": "^7.3.2",
Expand Down
2 changes: 1 addition & 1 deletion src/platform.ts
Original file line number Diff line number Diff line change
Expand Up @@ -403,7 +403,7 @@ class PlatformOrbit {
break;

default:
this.log.warn("Unhandled message received: " + jsonData['event']);
this.log.debug("Unhandled message received: " + jsonData['event']);
break;
}
}
Expand Down

0 comments on commit 2b4e3b9

Please sign in to comment.