@@ -28,7 +28,7 @@ local function updateConfig(uri)
2828 local specified = cfgLoader .loadLocalConfig (uri , CONFIGPATH )
2929 if specified then
3030 log .info (' Load config from specified' , CONFIGPATH )
31- log .debug (inspect (specified ))
31+ log .info (inspect (specified ))
3232 -- watch directory
3333 filewatch .watch (workspace .getAbsolutePath (uri , CONFIGPATH ):gsub (' [^/\\ ]+$' , ' ' ))
3434 config .update (scope .override , specified )
@@ -38,22 +38,22 @@ local function updateConfig(uri)
3838 local clientConfig = cfgLoader .loadClientConfig (folder .uri )
3939 if clientConfig then
4040 log .info (' Load config from client' , folder .uri )
41- log .debug (inspect (clientConfig ))
41+ log .info (inspect (clientConfig ))
4242 end
4343
4444 local rc = cfgLoader .loadRCConfig (folder .uri , ' .luarc.json' )
4545 or cfgLoader .loadRCConfig (folder .uri , ' .luarc.jsonc' )
4646 if rc then
4747 log .info (' Load config from .luarc.json/.luarc.jsonc' , folder .uri )
48- log .debug (inspect (rc ))
48+ log .info (inspect (rc ))
4949 end
5050
5151 config .update (folder , clientConfig , rc )
5252 end
5353
5454 local global = cfgLoader .loadClientConfig ()
5555 log .info (' Load config from client' , ' fallback' )
56- log .debug (inspect (global ))
56+ log .info (inspect (global ))
5757 config .update (scope .fallback , global )
5858end
5959
0 commit comments