mirror of
https://github.com/caddyserver/caddy.git
synced 2024-11-25 09:40:13 +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
|
//nolint:staticcheck
|
||||||
for range time.Tick(1 * time.Second) {
|
for range time.Tick(1 * time.Second) {
|
||||||
// get current config
|
// get current config
|
||||||
newCfg, _, err := LoadConfig(filename, adapterName)
|
newCfg, _, err := loadConfigWithLogger(nil, filename, adapterName)
|
||||||
if err != nil {
|
if err != nil {
|
||||||
logger().Error("unable to load latest config", zap.Error(err))
|
logger().Error("unable to load latest config", zap.Error(err))
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue
Block a user