summaryrefslogtreecommitdiff
path: root/context.go
diff options
context:
space:
mode:
authorMatthew Holt <mholt@users.noreply.github.com>2023-04-20 10:27:40 -0600
committerMatthew Holt <mholt@users.noreply.github.com>2023-04-20 10:27:40 -0600
commitc6ac350a3b53feb1dfcc24d82421cd20da61a163 (patch)
tree0be4ecd835a619438518ef0a5abc5d87e0e18ca2 /context.go
parentb301a3df70232fe00de186b0586dcec8bf0d2559 (diff)
core: Return default logger if no modules loaded
Fix report from: https://caddy.community/t/remote-caddyfile-invalid-memory-address-or-nil-pointer-dereference/19700/3
Diffstat (limited to 'context.go')
-rw-r--r--context.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/context.go b/context.go
index fcefad1..615192c 100644
--- a/context.go
+++ b/context.go
@@ -480,6 +480,9 @@ func (ctx Context) Logger(module ...Module) *zap.Logger {
if len(module) > 0 {
mod = module[0]
}
+ if mod == nil {
+ return Log()
+ }
return ctx.cfg.Logging.Logger(mod)
}