Repository: qpid-dispatch Updated Branches: refs/heads/master 4284ffb12 -> d275d18c2
DISPATCH-597 - Set the log level of a couple of connection related log messages to INFO level Project: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/repo Commit: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/commit/d275d18c Tree: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/tree/d275d18c Diff: http://git-wip-us.apache.org/repos/asf/qpid-dispatch/diff/d275d18c Branch: refs/heads/master Commit: d275d18c2325ffd4800c32d43e1b98b90820b7ae Parents: 4284ffb Author: Ganesh Murthy <[email protected]> Authored: Wed Mar 22 13:35:36 2017 -0400 Committer: Ganesh Murthy <[email protected]> Committed: Wed Mar 22 13:35:36 2017 -0400 ---------------------------------------------------------------------- src/server.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/qpid-dispatch/blob/d275d18c/src/server.c ---------------------------------------------------------------------- diff --git a/src/server.c b/src/server.c index 8d2178c..42fed58 100644 --- a/src/server.c +++ b/src/server.c @@ -645,7 +645,7 @@ static void thread_process_listeners_LH(qd_server_t *qd_server) ctx->owner_thread = CONTEXT_NO_OWNER; qdpn_connector_set_context(cxtr, ctx); - qd_log(qd_server->log_source, QD_LOG_TRACE, "Accepting %s with connection id [%"PRIu64"]", + qd_log(qd_server->log_source, QD_LOG_INFO, "Accepting %s with connection id [%"PRIu64"]", log_incoming(logbuf, sizeof(logbuf), cxtr), ctx->connection_id); // @@ -1158,7 +1158,7 @@ static void cxtr_try_open(void *context) ctx->role = (char*) malloc(role_length); strcpy(ctx->role, ctx->connector->config->role); - qd_log(ct->server->log_source, QD_LOG_TRACE, "Connecting to %s:%s", ct->config->host, ct->config->port); + qd_log(ct->server->log_source, QD_LOG_INFO, "Connecting to %s:%s", ct->config->host, ct->config->port); pn_connection_collect(ctx->pn_conn, ctx->collector); decorate_connection(ctx->server, ctx->pn_conn, ct->config); --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
