diff options
author | Roger Dingledine <arma@torproject.org> | 2003-11-17 07:29:43 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2003-11-17 07:29:43 +0000 |
commit | 42b5ed754f18a1ff473ab622409846103dc2fcdf (patch) | |
tree | 20cf218e4fbdd3e25ceb5b7cbce597bb463ea0ac /src | |
parent | 90e143e6d48759bdbe51089ce4dc820a8f815dc3 (diff) | |
download | tor-42b5ed754f18a1ff473ab622409846103dc2fcdf.tar tor-42b5ed754f18a1ff473ab622409846103dc2fcdf.tar.gz |
catch the last missing log line i hope
svn:r825
Diffstat (limited to 'src')
-rw-r--r-- | src/or/circuit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/circuit.c b/src/or/circuit.c index b1a1a6a61..7c363ddd2 100644 --- a/src/or/circuit.c +++ b/src/or/circuit.c @@ -857,7 +857,7 @@ int circuit_extend(cell_t *cell, circuit_t *circ) { */ struct in_addr in; in.s_addr = htonl(circ->n_addr); - log_fn(LOG_DEBUG,"Next router (%s:%d) not connected. Closing.", inet_ntoa(in), circ->n_port); + log_fn(LOG_WARN,"Next router (%s:%d) not connected. Closing.", inet_ntoa(in), circ->n_port); /* XXX later we should fail more gracefully here, like with a 'truncated' */ return -1; } |