remove emojis from logging. Fixes #5

This commit is contained in:
osiu97
2026-07-08 18:51:19 +02:00
parent b2ba8afead
commit 49f91c761d
4 changed files with 8 additions and 7 deletions
+2 -2
View File
@@ -86,7 +86,7 @@ const UI = (() => {
BLE.on('connected', (name) => {
setButtonLoading('btn-ble-connect', false);
setConnectionStatus(true, name);
log(`Connected to "${name}" `, 'success');
log(`Connected to "${name}" [INFO]`, 'success');
});
BLE.on('disconnected', () => {
@@ -96,7 +96,7 @@ const UI = (() => {
});
BLE.on('sent', (cmd) => {
log(` ${cmd}`, 'sent');
log(`[SEND] ${cmd}`, 'sent');
});
BLE.on('status', (msg) => {