Documentation
¶
Overview ¶
Package infra contains functionality shared between test and benchmark managers.
- Convenient definitions for:
- AttrFn defines the slog.HandlerOptions.ReplaceAttr function template.
- EmptyAttr() returns an empty attribute.
- Creator struct and instances thereof for specific slog.Handlers.
- Functions to return slog.HandlerOptions of general utility.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func LevelOptions ¶
func LevelOptions(level slog.Leveler) *slog.HandlerOptions
LevelOptions returns a slog.HandlerOptions with the specified level.
func ReplaceAttrOptions ¶
func ReplaceAttrOptions(fn AttrFn) *slog.HandlerOptions
ReplaceAttrOptions returns a slog.HandlerOptions with the specified ReplaceAttr function.
func SimpleOptions ¶
func SimpleOptions() *slog.HandlerOptions
SimpleOptions returns a default, simple, slog.HandlerOptions.
func SourceOptions ¶
func SourceOptions() *slog.HandlerOptions
SourceOptions returns a slog.HandlerOptions with the specified level and the AddSource field set to true.
Types ¶
type AttrFn ¶
AttrFn defines a type for ReplaceAttr functions. The slog.HandlersOptions struct defines this inline without defining a type.
type CreateHandlerFn ¶
CreateHandlerFn is a function that can create new slog.Handler objects.
type CreateLoggerFn ¶
CreateLoggerFn is a function that can create new slog.Logger objects.
type Creator ¶
type Creator struct {
// contains filtered or unexported fields
}
A Creator object encapsulates the creation of new slog.Handler objects. This includes both the name of the handler and a CreateLoggerFn.
func NewCreator ¶
func NewCreator(name string, handlerFn CreateHandlerFn, loggerFn CreateLoggerFn) Creator
NewCreator returns a new Creator object for the specified name and CreateLoggerFn.
func (*Creator) CanMakeHandler ¶
func (*Creator) NewHandler ¶
NewHandler returns a new slog.Handler object. The actual creation is done by invoking the embedded CreateHandlerFn.