aboutsummaryrefslogtreecommitdiff
path: root/src/feature/nodelist/routerlist.c
diff options
context:
space:
mode:
authorDavid Goulet <dgoulet@torproject.org>2020-07-02 07:20:58 -0400
committerDavid Goulet <dgoulet@torproject.org>2020-07-02 07:20:58 -0400
commit9b560ea71471b86a85c446f796b8934ea9c1bed8 (patch)
tree221990b2533c4f160c1a91351851a26b9c53e22d /src/feature/nodelist/routerlist.c
parent538b25241e9f2112e3a56449ba07c08f265f22f9 (diff)
parent8da10e8237df074194594823e6102f7bc6e811ae (diff)
downloadtor-9b560ea71471b86a85c446f796b8934ea9c1bed8.tar.gz
tor-9b560ea71471b86a85c446f796b8934ea9c1bed8.zip
Merge branch 'maint-0.4.4'
Diffstat (limited to 'src/feature/nodelist/routerlist.c')
-rw-r--r--src/feature/nodelist/routerlist.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/feature/nodelist/routerlist.c b/src/feature/nodelist/routerlist.c
index ece3379fa5..1afbdf056f 100644
--- a/src/feature/nodelist/routerlist.c
+++ b/src/feature/nodelist/routerlist.c
@@ -1170,7 +1170,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;
}