We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 836710d commit 032098aCopy full SHA for 032098a
.changeset/mean-bugs-attack.md
@@ -0,0 +1,5 @@
1
+---
2
+"homebridge-roomba2": patch
3
4
+
5
+Improve the log message when Roomba fails to complete a docking manoeuvre
src/accessory.ts
@@ -268,7 +268,7 @@ export default class RoombaAccessory implements AccessoryPlugin {
268
break;
269
}
270
} catch (error) {
271
- this.log((error as Error).message);
+ this.log.warn(`Roomba failed to dock: ${(error as Error).message}`);
272
this.endRoombaIfNeeded(roomba);
273
274
0 commit comments