From 42b5ed754f18a1ff473ab622409846103dc2fcdf Mon Sep 17 00:00:00 2001 From: Roger Dingledine Date: Mon, 17 Nov 2003 07:29:43 +0000 Subject: [PATCH] catch the last missing log line i hope svn:r825 --- src/or/circuit.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/or/circuit.c b/src/or/circuit.c index b1a1a6a616..7c363ddd27 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; }