summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoger Dingledine <arma@torproject.org>2004-03-26 22:28:16 +0000
committerRoger Dingledine <arma@torproject.org>2004-03-26 22:28:16 +0000
commit45699bb5ee379a396cf8709d306a3a2f2e4930a5 (patch)
tree0ee04e841cd7e4ea446957cf4aeacf1b6b80355c
parenta6f3e3f5a8297d9bec5eebd8f8484c1acd2a4236 (diff)
downloadtor-0.0.4.tar.gz
tor-0.0.4.zip
clean up some 'warn' messages while i'm at ittor-0.0.4
svn:r1342
-rw-r--r--src/or/onion.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/or/onion.c b/src/or/onion.c
index 8dc3efa904..a4a09741e2 100644
--- a/src/or/onion.c
+++ b/src/or/onion.c
@@ -207,7 +207,7 @@ static int new_route_len(double cw, routerinfo_t **rarray, int rarray_len) {
num_acceptable_routers = count_acceptable_routers(rarray, rarray_len);
if(num_acceptable_routers < 2) {
- log_fn(LOG_INFO,"Not enough acceptable routers. Failing.");
+ log_fn(LOG_INFO,"Not enough acceptable routers. Discarding this circuit.");
return -1;
}
@@ -459,7 +459,7 @@ int onion_extend_cpath(crypt_path_t **head_ptr, cpath_build_state_t *state, rout
choice = router_get_by_nickname(state->chosen_exit);
smartlist_free(excludednodes);
if(!choice) {
- log_fn(LOG_WARN,"Our chosen exit %s is no longer in the directory? Failing.",
+ log_fn(LOG_WARN,"Our chosen exit %s is no longer in the directory? Discarding this circuit.",
state->chosen_exit);
return -1;
}
@@ -482,7 +482,7 @@ int onion_extend_cpath(crypt_path_t **head_ptr, cpath_build_state_t *state, rout
}
smartlist_free(excludednodes);
if(!choice) {
- log_fn(LOG_WARN,"No acceptable routers while picking entry node. Failing.");
+ log_fn(LOG_WARN,"No acceptable routers while picking entry node. Discarding this circuit.");
return -1;
}
} else {
@@ -500,7 +500,7 @@ int onion_extend_cpath(crypt_path_t **head_ptr, cpath_build_state_t *state, rout
smartlist_free(sl);
smartlist_free(excludednodes);
if(!choice) {
- log_fn(LOG_WARN,"No acceptable routers while picking intermediate node. Failing.");
+ log_fn(LOG_WARN,"No acceptable routers while picking intermediate node. Discarding this circuit.");
return -1;
}
}