summaryrefslogtreecommitdiff
path: root/src/or/routerlist.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/or/routerlist.c')
-rw-r--r--src/or/routerlist.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/or/routerlist.c b/src/or/routerlist.c
index 88964611ba..f25be67935 100644
--- a/src/or/routerlist.c
+++ b/src/or/routerlist.c
@@ -3636,7 +3636,7 @@ int
should_delay_dir_fetches(or_options_t *options)
{
if (options->UseBridges && !any_bridge_descriptors_known()) {
- log_notice(LD_DIR, "delaying dir fetches");
+ log_info(LD_DIR, "delaying dir fetches");
return 1;
}
return 0;
@@ -5054,7 +5054,7 @@ update_router_have_minimum_dir_info(void)
networkstatus_list_clean(now);
if (should_delay_dir_fetches(get_options())) {
- log_notice(LD_DIR, "no bridge descs known yet");
+ log_notice(LD_DIR, "no known bridge descriptors running yet; stalling");
res = 0;
goto done;
}