summaryrefslogtreecommitdiff
path: root/src/or/router.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/or/router.c')
-rw-r--r--src/or/router.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/or/router.c b/src/or/router.c
index 66f1f672ca..bc38f107cd 100644
--- a/src/or/router.c
+++ b/src/or/router.c
@@ -1015,7 +1015,8 @@ router_new_address_suggestion(const char *suggestion)
/* first, learn what the IP address actually is */
if (!tor_inet_aton(suggestion, &in)) {
- log_debug(LD_DIR, "Malformed X-Your-Address-Is header. Ignoring.");
+ log_debug(LD_DIR, "Malformed X-Your-Address-Is header %s. Ignoring.",
+ escaped(suggestion));
return;
}
addr = ntohl(in.s_addr);