(ctx context.Context, msg string, data ...any)
| 43 | } |
| 44 | |
| 45 | func (s *GormLogAdapter) Warn(ctx context.Context, msg string, data ...any) { |
| 46 | slog.WarnContext(ctx, fmt.Sprintf(msg, data...)) //nolint:sloglint // Gorm logger interface requires format string |
| 47 | } |
| 48 | |
| 49 | func (s *GormLogAdapter) Error(ctx context.Context, msg string, data ...any) { |
| 50 | slog.ErrorContext(ctx, fmt.Sprintf(msg, data...)) //nolint:sloglint // Gorm logger interface requires format string |
no outgoing calls
no test coverage detected