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; }