summaryrefslogtreecommitdiff
path: root/caddy.go
diff options
context:
space:
mode:
authorAbdelmalek Ihdene <52615297+AbdelmalekIhdene@users.noreply.github.com>2019-12-15 14:58:01 -0500
committerMatt Holt <mholt@users.noreply.github.com>2019-12-15 12:58:01 -0700
commitc3bcd967bd3be85c41ac5f630d496f0dc0d18115 (patch)
tree8bb555badd890eb1713dcc20d99ab81a3e98367f /caddy.go
parent6ea121ddf8c5be6de892971782d6f0fe2938ebbf (diff)
logging: Implement net writer (#2884)
* Implement UDP writer * Implement Net Writer * Utilize Caddy's address parsing functions * A couple little fixes (see #2884)
Diffstat (limited to 'caddy.go')
-rw-r--r--caddy.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/caddy.go b/caddy.go
index f13540d..cde42b1 100644
--- a/caddy.go
+++ b/caddy.go
@@ -134,7 +134,7 @@ func changeConfig(method, path string, input []byte, forceReload bool) error {
// if nothing changed, no need to do a whole reload unless the client forces it
if !forceReload && bytes.Equal(rawCfgJSON, newCfg) {
- Log().Named("admin.api.change_config").Info("config is unchanged")
+ Log().Named("admin.api").Info("config is unchanged")
return nil
}