aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2003-11-17 07:29:43 +0000
committerRoger Dingledine <arma@torproject.org>2003-11-17 07:29:43 +0000
commit42b5ed754f18a1ff473ab622409846103dc2fcdf (patch)
tree20cf218e4fbdd3e25ceb5b7cbce597bb463ea0ac /src
parent90e143e6d48759bdbe51089ce4dc820a8f815dc3 (diff)
downloadtor-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.c2
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;
}