diff options
author | Mike Perry <mikeperry-git@fscked.org> | 2010-03-03 17:35:06 -0800 |
---|---|---|
committer | Mike Perry <mikeperry-git@fscked.org> | 2010-03-03 17:35:06 -0800 |
commit | 97eec84f4bcc4908e47ebcb51f1eb1d3a782b42b (patch) | |
tree | 78f8f7e81d2a8acb726b9f55baa4467e2d247e2a /src/or/routerlist.c | |
parent | 03d6995d0ef689bc9951e603d09939c449d9c159 (diff) | |
download | tor-97eec84f4bcc4908e47ebcb51f1eb1d3a782b42b.tar.gz tor-97eec84f4bcc4908e47ebcb51f1eb1d3a782b42b.zip |
Demote warn to info, since it can happen.
I still feel like we should investigate this case. It seems odd.
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r-- | src/or/routerlist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c index 4daf1e6abd..392588cef4 100644 --- a/src/or/routerlist.c +++ b/src/or/routerlist.c @@ -1577,7 +1577,7 @@ smartlist_choose_by_bandwidth_weights(smartlist_t *sl, rule == WEIGHT_FOR_DIR); if (!sl || smartlist_len(sl) == 0) { - log_warn(LD_CIRC, + log_info(LD_CIRC, "Empty routerlist passed in to node selection for rule %d", rule); return NULL; |