diff options
author | Matthew Wild <mwild1@gmail.com> | 2011-11-02 07:17:26 +0000 |
---|---|---|
committer | Matthew Wild <mwild1@gmail.com> | 2011-11-02 07:17:26 +0000 |
commit | 882ae673fe39c5bec5668168b6a5ba6f1b35fbab (patch) | |
tree | bcb788812b22466058e556eb3728670991458b01 /core | |
parent | 6ac9b5f26bc0d22899e9b01e06857ba1751d721f (diff) | |
parent | 6dd8ff0d00e3b5079e374afd0e36314a8e1f75d8 (diff) | |
download | prosody-882ae673fe39c5bec5668168b6a5ba6f1b35fbab.tar.gz prosody-882ae673fe39c5bec5668168b6a5ba6f1b35fbab.zip |
Merge with Zash
Diffstat (limited to 'core')
-rw-r--r-- | core/certmanager.lua | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/certmanager.lua b/core/certmanager.lua index 7b8ca9e1..8b82ac47 100644 --- a/core/certmanager.lua +++ b/core/certmanager.lua @@ -75,9 +75,9 @@ function create_context(host, mode, user_ssl_config) else reason = "Reason: "..tostring(reason):lower(); end - log("error", "SSL/TLS: Failed to load %s: %s", file, reason); + log("error", "SSL/TLS: Failed to load %s: %s (host: %s)", file, reason, host); else - log("error", "SSL/TLS: Error initialising for host %s: %s", host, err ); + log("error", "SSL/TLS: Error initialising for host %s: %s (host: %s)", host, err, host); end end return ctx, err; |