Logging updates.
This commit is contained in:
parent
5802c9372d
commit
4385aa23a0
@ -100,7 +100,7 @@ end
|
||||
local function handleMessage(sender, type, data)
|
||||
|
||||
if type == LOG then
|
||||
print("[" .. sender .. "]: " .. data["log"] .. " : " .. (data["content"] and textutils.serialiseJSON(data["content"]) or ""))
|
||||
print("[" .. sender .. "]: " .. data["log"] .. " : " .. (data["content"] and textutils.serialise(data["content"]) or ""))
|
||||
elseif type == REQUEST then
|
||||
handleRequest(sender, data["request"], data["content"])
|
||||
end
|
||||
|
@ -278,7 +278,7 @@ local function determineHeading()
|
||||
end
|
||||
|
||||
local function moveBy(delta, forward, right)
|
||||
sendLog("Attempting to move by (" .. delta.x .. "," .. delta.y .. "," .. delta.z .. ") (x,y,z).")
|
||||
sendLog(MOVEBY, "Attempting to move by (" .. delta.x .. "," .. delta.y .. "," .. delta.z .. ") (x,y,z).")
|
||||
-- x first
|
||||
if delta.x ~= 0 then
|
||||
sendLog(MOVEBY, "Moving on x axis by: " .. delta.x)
|
||||
|
Loading…
Reference in New Issue
Block a user