Files
Gogs/internal/dbutil/logger.go
ᴊᴏᴇ ᴄʜᴇɴ 59e9fa191b chore: remove all MIT license file headers (#8083)
Co-authored-by: deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com>
2026-01-08 19:32:15 -05:00

16 lines
245 B
Go

package dbutil
import (
"fmt"
"io"
)
// Logger is a wrapper of io.Writer for the GORM's logger.Writer.
type Logger struct {
io.Writer
}
func (l *Logger) Printf(format string, args ...any) {
_, _ = fmt.Fprintf(l.Writer, format, args...)
}