diff --git a/server/core/listener.cc b/server/core/listener.cc index 677cf3a7d..01f47a9a7 100644 --- a/server/core/listener.cc +++ b/server/core/listener.cc @@ -383,7 +383,7 @@ bool SSL_LISTENER_init(SSL_LISTENER* ssl) /* Load the CA certificate into the SSL_CTX structure */ if (!SSL_CTX_load_verify_locations(ctx, ssl->ssl_ca_cert, NULL)) { - MXS_ERROR("Failed to set Certificate Authority file"); + MXS_ERROR("Failed to set Certificate Authority file: %s", get_ssl_errors()); rval = false; }