From 624d91aeca96a02052a009cf935877eb7d85157b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Markus=20M=C3=A4kel=C3=A4?= Date: Thu, 19 Jan 2017 12:47:30 +0200 Subject: [PATCH] Log a message when a SSL listener is created Seeing the type of the listener that was created helps to analyze the actions done at runtime. --- server/core/config_runtime.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/server/core/config_runtime.c b/server/core/config_runtime.c index 2cc8e6bbb..cf47627fa 100644 --- a/server/core/config_runtime.c +++ b/server/core/config_runtime.c @@ -513,7 +513,8 @@ bool runtime_create_listener(SERVICE *service, const char *name, const char *add if (listener && listener_serialize(listener) && serviceLaunchListener(service, listener)) { - MXS_NOTICE("Created listener '%s' at %s:%s for service '%s'", + MXS_NOTICE("Created %slistener '%s' at %s:%s for service '%s'%s", + ssl ? "TLS encrypted " : "", name, print_addr, port, service->name); } else