Cleaned up error logging for session creation failures

The old message logged the function name and thread ID which are not useful
to the end user. The thread ID should only be printed for debugging purposes,
not general error messages.
This commit is contained in:
Markus Makela
2016-02-25 18:52:22 +02:00
parent 18526c28f6
commit f8d74dd7e2

View File

@ -154,12 +154,8 @@ session_alloc(SERVICE *service, DCB *client_dcb)
if (session->router_session == NULL) if (session->router_session == NULL)
{ {
session->state = SESSION_STATE_TO_BE_FREED; session->state = SESSION_STATE_TO_BE_FREED;
MXS_ERROR("Failed to create new router session for service '%s'. "
MXS_ERROR("%lu [%s] Error : Failed to create %s session because router" "See previous errors for more details.", service->name);
"could not establish a new router session, see earlier error.",
pthread_self(),
__func__,
service->name);
} }
/* /*
* Pending filter chain being setup set the head of the chain to * Pending filter chain being setup set the head of the chain to