diff options
Diffstat (limited to 'src/or')
-rw-r--r-- | src/or/relay.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/relay.c b/src/or/relay.c index a6a8fef707..b4592e85f8 100644 --- a/src/or/relay.c +++ b/src/or/relay.c @@ -1048,7 +1048,8 @@ connection_edge_process_relay_cell(cell_t *cell, circuit_t *circ, circuit_consider_sending_sendme(circ, layer_hint); if (!conn) { - log_info(domain,"data cell dropped, unknown stream."); + log_info(domain,"data cell dropped, unknown stream (streamid %d).", + rh.stream_id); return 0; } |