summaryrefslogtreecommitdiff
path: root/proxy
diff options
context:
space:
mode:
authorJeroen Wijenbergh <jeroen.wijenbergh@geant.org>2025-05-06 12:40:47 +0200
committerJeroen Wijenbergh <jeroen.wijenbergh@geant.org>2025-05-06 12:40:47 +0200
commit347b20fc91505584bc9efbeca89590a411b95e79 (patch)
tree9dfc600e957c4a881115f8bc8a9cc107a4f0cc9c /proxy
parent9c4985368aee638d982f30ea7bc5c7ee71ae3ab3 (diff)
All: Run modernize --test --fix
Diffstat (limited to 'proxy')
-rw-r--r--proxy/proxy.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/proxy/proxy.go b/proxy/proxy.go
index a43083f..4c51aed 100644
--- a/proxy/proxy.go
+++ b/proxy/proxy.go
@@ -18,7 +18,7 @@ import (
type Logger struct{}
// Logf logs a message with parameters
-func (l *Logger) Logf(msg string, params ...interface{}) {
+func (l *Logger) Logf(msg string, params ...any) {
log.Logger.Infof("[Proxyguard] "+msg, params...)
}