From 722204aaf7faff43fc5f8b3e780fccf4078c0874 Mon Sep 17 00:00:00 2001 From: Jennifer Richards Date: Fri, 1 Jun 2018 15:58:28 -0400 Subject: [PATCH] Reduce priority on a couple non-essential log messages --- trp/trps.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/trp/trps.c b/trp/trps.c index a489133..b4051e1 100644 --- a/trp/trps.c +++ b/trp/trps.c @@ -430,11 +430,11 @@ TRP_RC trps_authorize_connection(TRPS_INSTANCE *trps, TRP_CONNECTION *conn) { /* try to establish a GSS context */ if (0!=trp_connection_auth(conn, trps->auth_handler, trps->cookie)) { - tr_notice("trps_authorize_connection: failed to authorize connection"); + tr_debug("trps_authorize_connection: failed to authorize connection"); trp_connection_close(conn); return TRP_ERROR; } - tr_notice("trps_authorize_connection: authorized connection"); + tr_debug("trps_authorize_connection: authorized connection"); return TRP_SUCCESS; } -- 2.1.4