From 3c40cf9ef47a42dd66222832f8fca5eb22e72876 Mon Sep 17 00:00:00 2001 From: MayaTheShy Date: Sun, 29 Mar 2026 01:12:09 -0400 Subject: [PATCH] fix: change log level from info to debug for network message queuing and processing --- inventoryManager.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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