diff options
author | Roger Dingledine <arma@torproject.org> | 2002-07-22 04:08:37 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2002-07-22 04:08:37 +0000 |
commit | cd0760ddda650c147ba21b933cebef5008eb645e (patch) | |
tree | 4665fda0f0145ef5fad4eacd8686ab66c3dd1e7b /src/or/circuit.c | |
parent | a303325dca17f198722302b7d6188dbe68dd314d (diff) | |
download | tor-cd0760ddda650c147ba21b933cebef5008eb645e.tar tor-cd0760ddda650c147ba21b933cebef5008eb645e.tar.gz |
Code cleaned up to be less noisy
svn:r71
Diffstat (limited to 'src/or/circuit.c')
-rw-r--r-- | src/or/circuit.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/or/circuit.c b/src/or/circuit.c index 2758c13d2..52578d15b 100644 --- a/src/or/circuit.c +++ b/src/or/circuit.c @@ -262,15 +262,15 @@ int circuit_deliver_data_cell(cell_t *cell, circuit_t *circ, connection_t *conn, } if(conn->type == CONN_TYPE_EXIT) { /* send payload directly */ - log(LOG_DEBUG,"circuit_deliver_data_cell(): Sending to exit."); +// log(LOG_DEBUG,"circuit_deliver_data_cell(): Sending to exit."); return connection_exit_process_data_cell(cell, conn); } if(conn->type == CONN_TYPE_AP) { /* send payload directly */ - log(LOG_DEBUG,"circuit_deliver_data_cell(): Sending to AP."); +// log(LOG_DEBUG,"circuit_deliver_data_cell(): Sending to AP."); return connection_ap_process_data_cell(cell, conn); } /* else send it as a cell */ - log(LOG_DEBUG,"circuit_deliver_data_cell(): Sending to connection."); +// log(LOG_DEBUG,"circuit_deliver_data_cell(): Sending to connection."); return connection_write_cell_to_buf(cell, conn); } |