From e79e18794bdfecbf8d2e27b150a2b480d6d4b11b Mon Sep 17 00:00:00 2001 From: Peter Schultz Date: Fri, 7 Jul 2017 16:44:24 +0200 Subject: [PATCH] fix log message --- config/load.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/config/load.go b/config/load.go index ac56b00a7..54fde1a3d 100644 --- a/config/load.go +++ b/config/load.go @@ -371,7 +371,7 @@ func parseListen(cfg map[string]string, cs map[string]CertSource, readTimeout, w if cs[csName].Type == "vault-pki" && !l.StrictMatch { // Without StrictMatch the first issued certificate is used for all // subsequent requests, even if the common name doesn't match. - log.Print("[INFO] vault-pki requires strictmatch; enabling strictmatch for listener %q", l.Addr) + log.Printf("[INFO] vault-pki requires strictmatch; enabling strictmatch for listener %s", l.Addr) l.StrictMatch = true }