aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/or/rendclient.c4
-rw-r--r--src/or/router.c6
2 files changed, 6 insertions, 4 deletions
diff --git a/src/or/rendclient.c b/src/or/rendclient.c
index 00b77d837..f65c20f2a 100644
--- a/src/or/rendclient.c
+++ b/src/or/rendclient.c
@@ -91,7 +91,9 @@ rend_client_send_introduction(origin_circuit_t *introcirc,
}
});
if (!intro_key) {
- log_warn(LD_BUG, "Internal error: could not find intro key.");
+ log_warn(LD_BUG, "Internal error: could not find intro key; we "
+ "only have a v2 rend desc with %d intro points.",
+ smartlist_len(entry->parsed->intro_nodes));
goto err;
}
if (crypto_pk_get_digest(intro_key, payload)<0) {
diff --git a/src/or/router.c b/src/or/router.c
index e5f3b52ec..cb73e378c 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -1511,8 +1511,8 @@ log_addr_has_changed(int severity, uint32_t prev, uint32_t cur,
addrbuf_prev, addrbuf_cur, source);
else
log_notice(LD_GENERAL,
- "Guessed our IP address as %s.",
- addrbuf_cur);
+ "Guessed our IP address as %s (source: %s).",
+ addrbuf_cur, source);
}
/** Check whether our own address as defined by the Address configuration
@@ -1535,7 +1535,7 @@ check_descriptor_ipaddress_changed(time_t now)
}
if (prev != cur) {
- log_addr_has_changed(LOG_INFO, prev, cur, "resolve");
+ log_addr_has_changed(LOG_NOTICE, prev, cur, "resolve");
ip_address_changed(0);
}
}