diff options
author | David Goulet <dgoulet@torproject.org> | 2020-07-02 07:20:57 -0400 |
---|---|---|
committer | David Goulet <dgoulet@torproject.org> | 2020-07-02 07:20:57 -0400 |
commit | 5a5ff3d8c5d6b27d5c0371a3bbb0113332e2a9f9 (patch) | |
tree | 264313ca7c931830f1bd491787c37ea7d471f3aa /src | |
parent | 322abd4fd9ce7e3d60f10e1ef4d343c42d14a9ba (diff) | |
parent | 07d8d398ca8961d2d9155a2df9c7ced6b382e73b (diff) | |
download | tor-5a5ff3d8c5d6b27d5c0371a3bbb0113332e2a9f9.tar.gz tor-5a5ff3d8c5d6b27d5c0371a3bbb0113332e2a9f9.zip |
Merge branch 'maint-0.4.2' into maint-0.4.3
Diffstat (limited to 'src')
-rw-r--r-- | src/feature/nodelist/routerlist.c | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/feature/nodelist/routerlist.c b/src/feature/nodelist/routerlist.c index 42ce6f4c4e..a0c9db8438 100644 --- a/src/feature/nodelist/routerlist.c +++ b/src/feature/nodelist/routerlist.c @@ -1088,7 +1088,11 @@ extrainfo_insert,(routerlist_t *rl, extrainfo_t *ei, int warn_if_incompatible)) * This just won't work. */; static ratelim_t no_sd_ratelim = RATELIM_INIT(1800); r = ROUTER_BAD_EI; - log_fn_ratelim(&no_sd_ratelim, severity, LD_BUG, + /* This is a DEBUG because it can happen naturally, if we tried + * to add an extrainfo for which we no longer have the + * corresponding routerinfo. + */ + log_fn_ratelim(&no_sd_ratelim, LOG_DEBUG, LD_DIR, "No entry found in extrainfo map."); goto done; } |