Bump a client authorization message from debug to info.

A user wants this for 14015, and it seems fairly reasonable.
This commit is contained in:
Nick Mathewson 2015-01-28 09:42:28 -05:00
parent e00503fe57
commit 20d0b1a04e
2 changed files with 5 additions and 2 deletions

3
changes/feature14015 Normal file
View File

@ -0,0 +1,3 @@
o Minor features (logging, hidden services):
- Elevate authorized-client message from DEBUG to INFO. Closes
ticket 14015.

View File

@ -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;
}