X-Git-Url: http://www.project-moonshot.org/gitweb/?p=trust_router.git;a=blobdiff_plain;f=trp%2Ftrps.c;fp=trp%2Ftrps.c;h=b4051e1470c38044ee6b485a9cf2dd62ba63fb9d;hp=a4891331de2d9523b439eb44f83c3260fcded0e9;hb=722204aaf7faff43fc5f8b3e780fccf4078c0874;hpb=4a2b122495ba45a536627c9b7af746150bfea1a5 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; }