From: Jennifer Richards Date: Fri, 1 Jun 2018 19:58:28 +0000 (-0400) Subject: Reduce priority on a couple non-essential log messages X-Git-Tag: 3.4.0~1^2~6 X-Git-Url: http://www.project-moonshot.org/gitweb/?p=trust_router.git;a=commitdiff_plain;h=722204aaf7faff43fc5f8b3e780fccf4078c0874 Reduce priority on a couple non-essential log messages --- 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; }