diff options
Diffstat (limited to 'syz-cluster/pkg/app/logging.go')
| -rw-r--r-- | syz-cluster/pkg/app/logging.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/syz-cluster/pkg/app/logging.go b/syz-cluster/pkg/app/logging.go index a4202dd84..01bd4bd3f 100644 --- a/syz-cluster/pkg/app/logging.go +++ b/syz-cluster/pkg/app/logging.go @@ -7,10 +7,10 @@ import "log" // TODO: catch these with monitoring. -func Errorf(fmt string, args ...interface{}) { +func Errorf(fmt string, args ...any) { log.Printf(fmt, args...) } -func Fatalf(fmt string, args ...interface{}) { +func Fatalf(fmt string, args ...any) { log.Fatalf(fmt, args...) } |
