diff options
author | Peter Palfrader <peter@palfrader.org> | 2005-10-17 02:13:36 +0000 |
---|---|---|
committer | Peter Palfrader <peter@palfrader.org> | 2005-10-17 02:13:36 +0000 |
commit | 7b15f77dd68cd0ba231500589a4fe736cfddd641 (patch) | |
tree | c7e29390c9bafc0bafc163d0965e14d8a42ebe33 /src/or/connection.c | |
parent | c0fd66a746b293418b04f58ad1d09d23ea3084c8 (diff) | |
download | tor-7b15f77dd68cd0ba231500589a4fe736cfddd641.tar.gz tor-7b15f77dd68cd0ba231500589a4fe736cfddd641.zip |
Make a few INFO log lines into DEBUG
svn:r5257
Diffstat (limited to 'src/or/connection.c')
-rw-r--r-- | src/or/connection.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/connection.c b/src/or/connection.c index 2e611ccc8a..9aaa9a6a11 100644 --- a/src/or/connection.c +++ b/src/or/connection.c @@ -234,7 +234,7 @@ _connection_free(connection_t *conn) tor_free(conn->requested_resource); if (conn->s >= 0) { - log_fn(LOG_INFO,"closing fd %d.",conn->s); + log_fn(LOG_DEBUG,"closing fd %d.",conn->s); tor_close_socket(conn->s); } @@ -631,7 +631,7 @@ connection_handle_listener_read(connection_t *conn, int new_type) connection_mark_for_close(conn); return -1; } - log(LOG_INFO,"Connection accepted on socket %d (child of fd %d).",news, conn->s); + log(LOG_DEBUG,"Connection accepted on socket %d (child of fd %d).",news, conn->s); set_socket_nonblocking(news); @@ -1756,7 +1756,7 @@ connection_send_destroy(uint16_t circ_id, connection_t *conn) memset(&cell, 0, sizeof(cell_t)); cell.circ_id = circ_id; cell.command = CELL_DESTROY; - log_fn(LOG_INFO,"Sending destroy (circID %d).", circ_id); + log_fn(LOG_DEBUG,"Sending destroy (circID %d).", circ_id); connection_or_write_cell_to_buf(&cell, conn); return 0; } |