diff options
author | Roger Dingledine <arma@torproject.org> | 2004-03-03 03:02:06 +0000 |
---|---|---|
committer | Roger Dingledine <arma@torproject.org> | 2004-03-03 03:02:06 +0000 |
commit | de146de0c560f23cd8da347abae2537f4e4abd30 (patch) | |
tree | 4f2aa548672283b3e03e52360b61b1f0f1a39c37 /src | |
parent | 20ecb66c7d78012bd90a4fccc262724febfd6c0c (diff) | |
download | tor-de146de0c560f23cd8da347abae2537f4e4abd30.tar tor-de146de0c560f23cd8da347abae2537f4e4abd30.tar.gz |
make circuit-building less noisy when a node in your exclude/exit/entrynodes is down
svn:r1206
Diffstat (limited to 'src')
-rw-r--r-- | src/or/onion.c | 2 | ||||
-rw-r--r-- | src/or/or.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/or/onion.c b/src/or/onion.c index 4b1969560..e71c68f1a 100644 --- a/src/or/onion.c +++ b/src/or/onion.c @@ -176,7 +176,7 @@ static void add_nickname_list_to_smartlist(smartlist_t *sl, char *list) { if (router->is_running) smartlist_add(sl,router); else - log_fn(LOG_WARN,"Nickname list includes '%s' which is known but down.",nick); + log_fn(LOG_INFO,"Nickname list includes '%s' which is known but down.",nick); } else log_fn(has_fetched_directory ? LOG_WARN : LOG_INFO, "Nickname list includes '%s' which isn't a known router.",nick); diff --git a/src/or/or.h b/src/or/or.h index 9313f125e..51a38032d 100644 --- a/src/or/or.h +++ b/src/or/or.h @@ -148,7 +148,7 @@ #define EXIT_CONN_STATE_RESOLVING 1 /* waiting for response from dns farm */ #define EXIT_CONN_STATE_CONNECTING 2 /* waiting for connect() to finish */ #define EXIT_CONN_STATE_OPEN 3 -#define EXIT_CONN_STATE_RESOLVEFAILED 4 /* waiting to be remoed*/ +#define EXIT_CONN_STATE_RESOLVEFAILED 4 /* waiting to be removed */ #define _EXIT_CONN_STATE_MAX 4 #if 0 #define EXIT_CONN_STATE_CLOSE 3 /* flushing the buffer, then will close */ |