diff options
Diffstat (limited to 'src/or/config.c')
-rw-r--r-- | src/or/config.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/or/config.c b/src/or/config.c index d23ad9cbe..a0cafb6a9 100644 --- a/src/or/config.c +++ b/src/or/config.c @@ -2056,7 +2056,9 @@ resolve_my_address(int warn_severity, or_options_t *options, if (last_resolved_addr && last_resolved_addr != *addr_out) { /* Leave this as a notice, regardless of the requested severity, * at least until dynamic IP address support becomes bulletproof. */ - log_notice(LD_NET, "Your IP address seems to have changed. Updating."); + log_notice(LD_NET, + "Your IP address seems to have changed to %s. Updating.", + tmpbuf); ip_address_changed(0); } if (last_resolved_addr != *addr_out) { |