remove emojis from logging. Fixes #5
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user