all: missing ip in logs

This commit is contained in:
Stanislav Chzhen 2024-03-05 17:14:02 +03:00
parent 7f24fc7ccc
commit 1d30c09957
2 changed files with 4 additions and 2 deletions

View File

@ -61,6 +61,8 @@ NOTE: Add new changes BELOW THIS COMMENT.
### Fixed
- Missing IP addresses in logs when querying for domain names from the ignore
lists.
- Wrong algorithm for caching bootstrapped upstream addresses ([#6723]).
- Incorrect tracking of the system hosts file's changes ([#6711]).

View File

@ -46,7 +46,7 @@ func (s *Server) processQueryLogsAndStats(dctx *dnsContext) (rc resultCode) {
dns.Class(cl),
dns.Type(qt),
host,
ip,
ipStr,
)
}
@ -58,7 +58,7 @@ func (s *Server) processQueryLogsAndStats(dctx *dnsContext) (rc resultCode) {
dns.Class(cl),
dns.Type(qt),
host,
ip,
ipStr,
)
}