We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7bff3e commit d378d4bCopy full SHA for d378d4b
go.mod
@@ -1,6 +1,6 @@
1
module ldddns.arnested.dk
2
3
-go 1.25.5
+go 1.26rc2
4
5
require (
6
github.com/Microsoft/go-winio v0.6.1 // indirect
internal/log/log.go
@@ -29,7 +29,7 @@ const (
29
)
30
31
// Logf formats a log entry to systemd's journald.
32
-func Logf(priority Priority, format string, a ...interface{}) {
+func Logf(priority Priority, format string, a ...any) {
33
err := journal.Print(journal.Priority(priority), format, a...)
34
if err != nil {
35
panic(fmt.Errorf("could not log: %w", err))
0 commit comments