From: Nick Mathewson Date: Wed, 28 Jan 2015 14:42:28 +0000 (-0500) Subject: Bump a client authorization message from debug to info. X-Git-Tag: tor-0.2.6.3-alpha~107 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=20d0b1a04e0949c1bb46858c117947131ee448e1;p=thirdparty%2Ftor.git Bump a client authorization message from debug to info. A user wants this for 14015, and it seems fairly reasonable. --- diff --git a/changes/feature14015 b/changes/feature14015 new file mode 100644 index 0000000000..bd09b49008 --- /dev/null +++ b/changes/feature14015 @@ -0,0 +1,3 @@ + o Minor features (logging, hidden services): + - Elevate authorized-client message from DEBUG to INFO. Closes + ticket 14015. diff --git a/src/or/rendservice.c b/src/or/rendservice.c index 5a12d074ac..588d1bf18b 100644 --- a/src/or/rendservice.c +++ b/src/or/rendservice.c @@ -1070,8 +1070,8 @@ rend_check_authorization(rend_service_t *service, } /* Allow the request. */ - log_debug(LD_REND, "Client %s authorized for service %s.", - auth_client->client_name, service->service_id); + log_info(LD_REND, "Client %s authorized for service %s.", + auth_client->client_name, service->service_id); return 1; }