We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b6fe6bb commit 4c98663Copy full SHA for 4c98663
lua/copilot/health.lua
@@ -1,6 +1,5 @@
1
local M = {}
2
3
-local api = require("copilot.api")
4
local auth = require("copilot.auth")
5
local c = require("copilot.client")
6
local config = require("copilot.config")
@@ -88,6 +87,11 @@ function M.check()
88
87
info("Panel disabled in configuration")
89
info("Enable with `panel = { enabled = true }` in setup()")
90
end
+
91
+ local logger_config = config.logger
92
+ if logger_config then
93
+ info("Log file: " .. (logger_config.file or "not set"))
94
+ end
95
96
97
return M
0 commit comments