# HG changeset patch # User Matthew Wild # Date 1336764255 -3600 # Node ID a31ea431d9062dd9b059bc8d8011c73730663e69 # Parent dab55c6f7710322d42a050497ad41badd89c9d42 certmanager: Adjust error messages to be non-specific about 'host' (so we can specify a service name instead ffor SSL) diff -r dab55c6f7710 -r a31ea431d906 core/certmanager.lua --- a/core/certmanager.lua Fri May 11 18:55:23 2012 +0100 +++ b/core/certmanager.lua Fri May 11 20:24:15 2012 +0100 @@ -75,9 +75,9 @@ else reason = "Reason: "..tostring(reason):lower(); end - log("error", "SSL/TLS: Failed to load %s: %s (host: %s)", file, reason, host); + log("error", "SSL/TLS: Failed to load %s: %s (for %s)", file, reason, host); else - log("error", "SSL/TLS: Error initialising for host %s: %s (host: %s)", host, err, host); + log("error", "SSL/TLS: Error initialising for %s: %s", host, err); end end return ctx, err;