]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Bump a client authorization message from debug to info.
authorNick Mathewson <nickm@torproject.org>
Wed, 28 Jan 2015 14:42:28 +0000 (09:42 -0500)
committerNick Mathewson <nickm@torproject.org>
Wed, 28 Jan 2015 14:42:28 +0000 (09:42 -0500)
A user wants this for 14015, and it seems fairly reasonable.

changes/feature14015 [new file with mode: 0644]
src/or/rendservice.c

diff --git a/changes/feature14015 b/changes/feature14015
new file mode 100644 (file)
index 0000000..bd09b49
--- /dev/null
@@ -0,0 +1,3 @@
+  o Minor features (logging, hidden services):
+    - Elevate authorized-client message from DEBUG to INFO. Closes
+      ticket 14015.
index 5a12d074ac6f8a4beedcb554ec58db7cd3c3b0c2..588d1bf18be04707e2535fd14c82c45aeef76a39 100644 (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;
 }