add proxy debug tool for bambu printers

This commit is contained in:
Stewart Allen 2025-02-03 12:47:03 -05:00
commit 23a289e4fa
3 changed files with 218 additions and 1 deletions

View file

@ -162,6 +162,10 @@ client.on("connect", () => {
});
});
client.on("error", (error) => {
log("mqtt error", error);
});
client.on("message", (topic, message) => {
log(JSON.parse(message.toString()));
});