feat: Enhance GPS position update logging with success and failure messages

This commit is contained in:
MayaTheShy
2026-02-20 00:19:41 -05:00
parent 835bfde1f5
commit 9202094de9

View File

@@ -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