From 08f17f812b6b33a248b822f4f16e9d7758a90ae3 Mon Sep 17 00:00:00 2001 From: Luna Date: Fri, 2 May 2025 18:47:58 -0300 Subject: [PATCH] log when config is found --- config.lua | 1 + 1 file changed, 1 insertion(+) diff --git a/config.lua b/config.lua index 451a3e7..0de4de9 100644 --- a/config.lua +++ b/config.lua @@ -7,6 +7,7 @@ local function findConfigFile() local possible_config_path = config_directory .. "/" .. "conf.lua" local fd, res = io.open(possible_config_path, "rb") if fd then + log('config found at ' .. possible_config_path) local data = fd:read("*a") fd:close() return data