mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-22 04:57:03 +08:00
cmd: Avoid spammy log messages (fix #5538)
I forgot there are two calls to LoadConfig() here that needed replacing.
This commit is contained in:
parent
ca14b6edd9
commit
38cb587e0f
|
@ -214,7 +214,7 @@ func watchConfigFile(filename, adapterName string) {
|
|||
//nolint:staticcheck
|
||||
for range time.Tick(1 * time.Second) {
|
||||
// get current config
|
||||
newCfg, _, err := LoadConfig(filename, adapterName)
|
||||
newCfg, _, err := loadConfigWithLogger(nil, filename, adapterName)
|
||||
if err != nil {
|
||||
logger().Error("unable to load latest config", zap.Error(err))
|
||||
return
|
||||
|
|
Loading…
Reference in New Issue
Block a user