(ctx context.Context, msg string, data ...interface{})
| 38 | } |
| 39 | |
| 40 | func (l *slogLogger) Info(ctx context.Context, msg string, data ...interface{}) { |
| 41 | if l.LogLevel >= Info { |
| 42 | l.log(ctx, slog.LevelInfo, msg, slog.Any("data", data)) |
| 43 | } |
| 44 | } |
| 45 | |
| 46 | func (l *slogLogger) Warn(ctx context.Context, msg string, data ...interface{}) { |
| 47 | if l.LogLevel >= Warn { |