diff options
author | Nick Mathewson <nickm@torproject.org> | 2014-02-16 12:11:07 -0500 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2014-02-16 12:11:07 -0500 |
commit | b5d6e4700212ddbc336173e2f251c1d434a70189 (patch) | |
tree | 827f803af132ca87a7b85666091b2c80f6365516 /src/or/rendclient.c | |
parent | bb21d14255c2f5c94173dda2ba30c83478044779 (diff) | |
download | tor-b5d6e4700212ddbc336173e2f251c1d434a70189.tar.gz tor-b5d6e4700212ddbc336173e2f251c1d434a70189.zip |
Warning message when bug 10722 would trigger
If somebody's excludenodes settings are keeping their hidden service
connections from working, they should probably get notified about it.
Diffstat (limited to 'src/or/rendclient.c')
-rw-r--r-- | src/or/rendclient.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c index 634a98c271..174511f55b 100644 --- a/src/or/rendclient.c +++ b/src/or/rendclient.c @@ -668,8 +668,9 @@ directory_get_from_hs_dir(const char *desc_id, const rend_data_t *rend_query) "service directories, because we requested them all " "recently without success."); if (options->StrictNodes && excluded_some) { - log_info(LD_REND, "There are others that we could have tried, but " - "they are all excluded, and StrictNodes is set."); + log_warn(LD_REND, "Could not pick a hidden service directory for the " + "requested hidden service: they are all either down or " + "excluded, and StrictNodes is set."); } return 0; } |