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 960f57c commit e09dd40Copy full SHA for e09dd40
lua/neogit/config.lua
@@ -159,11 +159,11 @@ function M.check_integration(name)
159
160
if enabled == nil or enabled == "auto" then
161
local success, _ = pcall(require, name)
162
- logger.fmt_info("Found auto integration '%s = %s'", name, success)
+ logger.fmt_info("[CONFIG] Found auto integration '%s = %s'", name, success)
163
return success
164
end
165
166
- logger.fmt_info("Found explicit integration '%s' = %s", name, enabled)
+ logger.fmt_info("[CONFIG] Found explicit integration '%s' = %s", name, enabled)
167
return enabled
168
169
0 commit comments