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.
This commit is contained in:
Markus Mäkelä 2017-01-19 12:47:30 +02:00
parent 8aa76727d2
commit 624d91aeca

View File

@ -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