diff options
author | Chris Buechler <cmb@pfsense.org> | 2016-02-18 00:09:22 -0600 |
---|---|---|
committer | Chris Buechler <cmb@pfsense.org> | 2016-02-18 00:09:22 -0600 |
commit | 140a87c5c01963dc0c56dd594893d1c61082ee43 (patch) | |
tree | 5997aa2f86fa9416bfc6e4251b9b23dbc96c48d3 /src/etc | |
parent | ac5c0cfe6174347966d6335ed6220e338121879c (diff) | |
download | pfsense-140a87c5c01963dc0c56dd594893d1c61082ee43.zip pfsense-140a87c5c01963dc0c56dd594893d1c61082ee43.tar.gz |
Add IP to dyndns error log, remove often wrong explanation.
Diffstat (limited to 'src/etc')
-rw-r--r-- | src/etc/inc/dyndns.class | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/etc/inc/dyndns.class b/src/etc/inc/dyndns.class index 9b0c18f..85b5a70 100644 --- a/src/etc/inc/dyndns.class +++ b/src/etc/inc/dyndns.class @@ -224,7 +224,7 @@ // Ensure that we were able to lookup the IP if (!is_ipaddr($this->_dnsIP)) { - log_error(sprintf(gettext('Dynamic DNS (%1$s) There was an error trying to determine the public IP for interface - %2$s(%3$s). Probably interface is not a WAN interface.'), $this->_FQDN, $dnsIf, $this->_if)); + log_error(sprintf(gettext('Dynamic DNS (%1$s) There was an error trying to determine the public IP for interface - %2$s (%3$s %4$s).'), $this->_FQDN, $dnsIf, $this->_if, $this->_dnsIP)); unlock($dyndnslck); return; } |