summaryrefslogtreecommitdiff
path: root/src/or/relay.c
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2009-06-20 03:21:52 -0400
committerRoger Dingledine <arma@torproject.org>2009-07-13 17:34:46 -0400
commit9ece0955f75d5bb4e9bd93b2fbbc1064def66774 (patch)
tree855d346a3732a97b106a609d45037d766de8b861 /src/or/relay.c
parent8f1a973669284e5662bd6f23bc96ecfafa57c554 (diff)
downloadtor-9ece0955f75d5bb4e9bd93b2fbbc1064def66774.tar.gz
tor-9ece0955f75d5bb4e9bd93b2fbbc1064def66774.zip
fix comments and other typos
Diffstat (limited to 'src/or/relay.c')
-rw-r--r--src/or/relay.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/relay.c b/src/or/relay.c
index e5ba6f4035..eb18bbaade 100644
--- a/src/or/relay.c
+++ b/src/or/relay.c
@@ -992,7 +992,8 @@ connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ,
relay_header_unpack(&rh, cell->payload);
// log_fn(LOG_DEBUG,"command %d stream %d", rh.command, rh.stream_id);
num_seen++;
- log_debug(domain, "Now seen %d relay cells here.", num_seen);
+ log_debug(domain, "Now seen %d relay cells here (command %d, stream %d).",
+ num_seen, rh.command, rh.stream_id);
if (rh.length > RELAY_PAYLOAD_SIZE) {
log_fn(LOG_PROTOCOL_WARN, LD_PROTOCOL,