diff options
author | Roger Dingledine <arma@torproject.org> | 2004-04-05 22:01:35 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-04-05 22:01:35 +0000 |
commit | 2bb18e62cb7a323b08577b107c32b8c2976e2453 (patch) | |
tree | f3a831ead3da595216538ee3a6c08c0b04fbf4e4 /src/or/command.c | |
parent | 62b7ae6c9d1d02f08540ff968daa21369eadfaa6 (diff) | |
download | tor-2bb18e62cb7a323b08577b107c32b8c2976e2453.tar tor-2bb18e62cb7a323b08577b107c32b8c2976e2453.tar.gz |
make rend apconn send to the right cpath layer
and fix circuit_log_path to know about rend circs
svn:r1496
Diffstat (limited to 'src/or/command.c')
-rw-r--r-- | src/or/command.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/command.c b/src/or/command.c index b180c4750..4c4010970 100644 --- a/src/or/command.c +++ b/src/or/command.c @@ -193,7 +193,7 @@ static void command_process_destroy_cell(cell_t *cell, connection_t *conn) { return; } - log_fn(LOG_DEBUG,"Received for circID %d.",cell->circ_id); + log_fn(LOG_INFO,"Received for circID %d.",cell->circ_id); if(circ->state == CIRCUIT_STATE_ONIONSKIN_PENDING) { onion_pending_remove(circ); } |