Skip to content

Commit e09dd40

Browse files
committed
chore: add module to log message
1 parent 960f57c commit e09dd40

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

lua/neogit/config.lua

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -159,11 +159,11 @@ function M.check_integration(name)
159159

160160
if enabled == nil or enabled == "auto" then
161161
local success, _ = pcall(require, name)
162-
logger.fmt_info("Found auto integration '%s = %s'", name, success)
162+
logger.fmt_info("[CONFIG] Found auto integration '%s = %s'", name, success)
163163
return success
164164
end
165165

166-
logger.fmt_info("Found explicit integration '%s' = %s", name, enabled)
166+
logger.fmt_info("[CONFIG] Found explicit integration '%s' = %s", name, enabled)
167167
return enabled
168168
end
169169

0 commit comments

Comments
 (0)