Browse Source

httpcaddyfile: Why was this code repeated??

master
Matthew Holt 5 years ago
parent
commit
295604d6df
No known key found for this signature in database GPG Key ID: 2A349DD577D586A5
  1. 12
      caddyconfig/httpcaddyfile/httptype.go

12
caddyconfig/httpcaddyfile/httptype.go

@ -252,18 +252,6 @@ func (st ServerType) Setup(originalServerBlocks []caddyfile.ServerBlock,
} }
} }
} }
if len(customLogs) > 0 {
if cfg.Logging == nil {
cfg.Logging = &caddy.Logging{
Logs: make(map[string]*caddy.CustomLog),
}
}
for _, ncl := range customLogs {
if ncl.name != "" {
cfg.Logging.Logs[ncl.name] = ncl.log
}
}
}
return cfg, warnings, nil return cfg, warnings, nil
} }

Loading…
Cancel
Save