From c3bcd967bd3be85c41ac5f630d496f0dc0d18115 Mon Sep 17 00:00:00 2001 From: Abdelmalek Ihdene <52615297+AbdelmalekIhdene@users.noreply.github.com> Date: Sun, 15 Dec 2019 14:58:01 -0500 Subject: logging: Implement net writer (#2884) * Implement UDP writer * Implement Net Writer * Utilize Caddy's address parsing functions * A couple little fixes (see #2884) --- caddy.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'caddy.go') 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 } -- cgit v1.2.3