summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--player/lua/options.lua5
1 files changed, 3 insertions, 2 deletions
diff --git a/player/lua/options.lua b/player/lua/options.lua
index 4d05587ef1..a23417ae7d 100644
--- a/player/lua/options.lua
+++ b/player/lua/options.lua
@@ -40,7 +40,7 @@ local function read_options(options, identifier)
local conffilename = "script-opts/" .. identifier .. ".conf"
local conffile = mp.find_config_file(conffilename)
if conffile == nil then
- msg.verbose(conffilename .. " not found.")
+ msg.debug(conffilename .. " not found.")
conffilename = "lua-settings/" .. identifier .. ".conf"
conffile = mp.find_config_file(conffilename)
if conffile then
@@ -50,9 +50,10 @@ local function read_options(options, identifier)
local f = conffile and io.open(conffile,"r")
if f == nil then
-- config not found
- msg.verbose(conffilename .. " not found.")
+ msg.debug(conffilename .. " not found.")
else
-- config exists, read values
+ msg.verbose("Opened config file " .. conffilename .. ".")
local linecounter = 1
for line in f:lines() do
if string.find(line, "#") == 1 then