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
@@ -191,7 +191,7 @@ async function moveToXY(targetX, targetY) {
// Check workspace limits first (quick check before queue)
const wsCheck = IK.checkWorkspace(targetX, targetY);
if (!wsCheck.ok) {
UI.log(` ${wsCheck.reason}`, 'warn');
UI.log(`[WARNING] ${wsCheck.reason}`, 'warn');
return false;
}
@@ -697,7 +697,7 @@ const StepperTestSection = {
const { wx, wy, sx, sy } = pointerToWorld(e);
const ws = IK.checkWorkspace(wx, wy);
if (!ws.ok) {
UI.log(` ${ws.reason}`, 'warn');
UI.log(`[WARNING] ${ws.reason}`, 'warn');
return;
}
showTargetMarker(sx, sy);