diff options
author | Roger Dingledine <arma@torproject.org> | 2011-12-07 18:12:11 -0500 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2011-12-07 18:12:11 -0500 |
commit | 299034edf5e05c81d535fc7d0b2120b6a2810477 (patch) | |
tree | f1b019c109fa640cd31a5a5f1bcb93acfae3c221 /src/or/circuitbuild.c | |
parent | b5a21d79d81efeee69e71df23ee4f4983571bcea (diff) | |
download | tor-299034edf5e05c81d535fc7d0b2120b6a2810477.tar tor-299034edf5e05c81d535fc7d0b2120b6a2810477.tar.gz |
clarify a debug line
Diffstat (limited to 'src/or/circuitbuild.c')
-rw-r--r-- | src/or/circuitbuild.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/circuitbuild.c b/src/or/circuitbuild.c index 7934a2e7f..a9e5d2294 100644 --- a/src/or/circuitbuild.c +++ b/src/or/circuitbuild.c @@ -2524,7 +2524,8 @@ onionskin_answer(or_circuit_t *circ, uint8_t cell_type, const char *payload, append_cell_to_circuit_queue(TO_CIRCUIT(circ), circ->p_conn, &cell, CELL_DIRECTION_IN, 0); - log_debug(LD_CIRC,"Finished sending 'created' cell."); + log_debug(LD_CIRC,"Finished sending '%s' cell.", + circ->is_first_hop ? "created_fast" : "created"); if (!is_local_addr(&circ->p_conn->_base.addr) && !connection_or_nonopen_was_started_here(circ->p_conn)) { |