Add debug log for spirit message

This commit is contained in:
2025-05-28 02:48:57 +02:00
parent 765e1b50ba
commit cde3399154

View File

@@ -271,6 +271,7 @@ ws.addEventListener('message', async (event) => {
const msg = JSON.parse(event.data);
if (msg.type === 'spirit') {
await showSpirit(msg.data);
console.log(msg.data);
}
});