diff --git a/inventoryManager.lua b/inventoryManager.lua index 3d71c5a..e13ae67 100644 --- a/inventoryManager.lua +++ b/inventoryManager.lua @@ -648,7 +648,7 @@ local function main() local event, side, channel, replyChannel, message, distance = os.pullEvent("modem_message") if channel == cfg.ORDER_CHANNEL and type(message) == "table" then table.insert(networkQueue, { replyChannel = replyChannel, message = message }) - log.info("NET-CAP", "Queued: type=%s queue=%d", tostring(message.type), #networkQueue) + log.debug("NET-CAP", "Queued: type=%s queue=%d", tostring(message.type), #networkQueue) end end end), @@ -668,7 +668,7 @@ local function main() local entry = table.remove(networkQueue, 1) local message = entry.message local replyChannel = entry.replyChannel - log.info("NET-PROC", "Processing: type=%s id=%s queue=%d", + log.debug("NET-PROC", "Processing: type=%s id=%s queue=%d", tostring(message.type), tostring(message.commandId), #networkQueue) if isCommandDuplicate(message.commandId) then