diff options
Diffstat (limited to 'internal/dbutil/logger.go')
-rw-r--r-- | internal/dbutil/logger.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/dbutil/logger.go b/internal/dbutil/logger.go index 74297635..23639a99 100644 --- a/internal/dbutil/logger.go +++ b/internal/dbutil/logger.go @@ -14,6 +14,6 @@ type Logger struct { io.Writer } -func (l *Logger) Printf(format string, args ...interface{}) { +func (l *Logger) Printf(format string, args ...any) { _, _ = fmt.Fprintf(l.Writer, format, args...) } |