Browse Source

feat: only show reloaded config on debug log level to decrease noise

ChristianChiarulli 2 năm trước cách đây
mục cha
commit
82f4b353b3
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      lua/lvim/utils/hooks.lua

+ 1 - 1
lua/lvim/utils/hooks.lua

@@ -19,7 +19,7 @@ function M.run_on_packer_complete()
   pcall(vim.cmd, "colorscheme " .. lvim.colorscheme)
 
   if M._reload_triggered then
-    Log:info "Reloaded configuration"
+    Log:debug "Reloaded configuration"
     M._reload_triggered = nil
   end
 end