]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Downgrade open/close log message for SocksSocket
authorAndrea Shepard <andrea@torproject.org>
Wed, 7 Jan 2015 22:57:51 +0000 (22:57 +0000)
committerAndrea Shepard <andrea@torproject.org>
Wed, 7 Jan 2015 22:57:51 +0000 (22:57 +0000)
src/or/connection.c
src/or/main.c

index 51d891d63a925c84ac9d613e138d0eb16d91e0c5..c78cebad709b5da80b84684b8301e8c839ed8351 100644 (file)
@@ -1506,7 +1506,7 @@ connection_handle_listener_read(connection_t *conn, int new_type)
     if (new_type == CONN_TYPE_AP && conn->socket_family == AF_UNIX) {
       newconn->port = 0;
       newconn->address = tor_strdup(conn->address);
-      log_notice(LD_NET, "New SOCKS SocksSocket connection opened");
+      log_info(LD_NET, "New SOCKS SocksSocket connection opened");
       TO_ENTRY_CONN(newconn)->socks_request->socks_prefer_no_auth =
         TO_LISTENER_CONN(conn)->socks_prefer_no_auth;
     }
index 0c49b40314aaf626d491fb9c894568e5d8b64aba..233b444791b409f4e45a005d7ecf0e72f3f24c16 100644 (file)
@@ -386,7 +386,7 @@ connection_remove(connection_t *conn)
             smartlist_len(connection_array));
 
   if (conn->type == CONN_TYPE_AP && conn->socket_family == AF_UNIX) {
-    log_notice(LD_NET, "Closing SOCKS SocksSocket connection");
+    log_info(LD_NET, "Closing SOCKS SocksSocket connection");
   }
 
   control_event_conn_bandwidth(conn);