Skip to content

Commit

Permalink
Log 'Evt' events
Browse files Browse the repository at this point in the history
  • Loading branch information
mrbungle64 committed Feb 22, 2024
1 parent e0cc864 commit 4f7bc38
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions main.js
Original file line number Diff line number Diff line change
Expand Up @@ -715,6 +715,10 @@ class EcovacsDeebot extends utils.Adapter {
});
});

this.vacbot.on('Evt', (obj) => {
this.log.info('Evt message: ' + JSON.stringify(obj));
});

this.vacbot.on('LastError', (obj) => {
if (this.errorCode !== obj.code) {
if (obj.code === '110') {
Expand Down

0 comments on commit 4f7bc38

Please sign in to comment.