From 3c13cacfc94130017a54d5beb70641ac4366f029 Mon Sep 17 00:00:00 2001 From: NullBite <me@nullbite.com> Date: Sun, 25 Jun 2023 00:46:01 -0400 Subject: [PATCH] sharedstate: higher log level for setting --- sharedstate.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sharedstate.lua b/sharedstate.lua index dc4d5b4..b2fd1aa 100644 --- a/sharedstate.lua +++ b/sharedstate.lua @@ -85,7 +85,7 @@ do ---@param value any value ---@param callback? function callback function function set_value(key, value, callback) - logging.trace("set_value", key, value, callback) + logging.debug("sharedstate: key " .. tostring(key) .. " set to " .. tostring(value)) local initialized=init_key(key) local entry=state_table[key] if initialized then