Skip to content

Commit 44dfffc

Browse files
committed
Pull request 2640: 8348-improve-dhcpd-error-handling
Updates AdguardTeam#8348. Squashed commit of the following: commit efc0f41 Merge: 86fa744 313135d Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Apr 23 18:21:20 2026 +0300 Merge branch 'master' into 8348-improve-dhcpd-error-handling commit 86fa744 Author: Eugene Burkov <E.Burkov@AdGuard.COM> Date: Thu Apr 23 15:09:40 2026 +0300 dhcpd: change log level
1 parent 313135d commit 44dfffc

2 files changed

Lines changed: 4 additions & 1 deletion

File tree

CHANGELOG.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,11 @@ NOTE: Add new changes BELOW THIS COMMENT.
2424

2525
### Fixed
2626

27+
- Redundant validation warnings about DHCP when it's disabled ([#8348]).
28+
2729
- Safe Browsing and Parental Control labels on the General Settings page not updating after changing the UI language.
2830

31+
[#8348]: https://github.com/AdguardTeam/AdGuardHome/issues/8348
2932
[#7046]: https://github.com/AdguardTeam/AdGuardHome/issues/7046
3033

3134
<!--

internal/dhcpd/dhcpd.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ func (s *server) setServers(
176176
return false, false, fmt.Errorf("creating dhcpv4 srv: %w", err)
177177
}
178178

179-
s.conf.Logger.WarnContext(ctx, "creating dhcpv4 server", slogutil.KeyError, err)
179+
s.conf.Logger.DebugContext(ctx, "creating dhcpv4 server", slogutil.KeyError, err)
180180
}
181181

182182
v6conf := conf.Conf6

0 commit comments

Comments
 (0)