Skip to content

Commit d378d4b

Browse files
arnestedgithub-actions[bot]
authored andcommitted
Test Go unstable version 1.26rc2
See the draft release notes: https://tip.golang.org/doc/go1.26.
1 parent f7bff3e commit d378d4b

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
module ldddns.arnested.dk
22

3-
go 1.25.5
3+
go 1.26rc2
44

55
require (
66
github.com/Microsoft/go-winio v0.6.1 // indirect

internal/log/log.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const (
2929
)
3030

3131
// Logf formats a log entry to systemd's journald.
32-
func Logf(priority Priority, format string, a ...interface{}) {
32+
func Logf(priority Priority, format string, a ...any) {
3333
err := journal.Print(journal.Priority(priority), format, a...)
3434
if err != nil {
3535
panic(fmt.Errorf("could not log: %w", err))

0 commit comments

Comments
 (0)