fix(shell): log IPC ERROR responses to console

This commit is contained in:
Marco Allegretti 2026-03-11 12:06:56 +01:00
parent d2fa616b00
commit 60256138a9

View file

@ -301,6 +301,8 @@
});
} else if (msg.type === 'LAUNCH_ACK') {
ensureTaskbarEntry(msg.session_id, msg.app_id || null);
} else if (msg.type === 'ERROR') {
console.warn('appd error', msg.code, msg.message);
}
}