From 9202094de9b25fc61f299a68b05958e11e319fe9 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Fri, 20 Feb 2026 00:19:41 -0500 Subject: [PATCH] feat: Enhance GPS position update logging with success and failure messages --- pocketcontrol.lua | 3 +++ 1 file changed, 3 insertions(+) diff --git a/pocketcontrol.lua b/pocketcontrol.lua index d472763..33fa2a8 100644 --- a/pocketcontrol.lua +++ b/pocketcontrol.lua @@ -101,7 +101,10 @@ local function updateMyPosition() position = myPosition, timestamp = os.epoch("utc") }) + addLog("GPS: " .. x .. "," .. y .. "," .. z, colors.lime) return true + else + addLog("GPS: Failed to locate", colors.red) end return false end