Files
go-kit/pkg/slogd/textHandler.go
Jan Tytgat 0efc6f033b Add package slogd
Signed-off-by: Jan Tytgat <jan.tytgat@corelayer.eu>
2025-04-15 09:36:56 +02:00

11 lines
181 B
Go

package slogd
import (
"io"
"log/slog"
)
func RegisterTextHandler(w io.Writer, activate bool) {
RegisterSink(HandlerText, slog.NewTextHandler(w, HandlerOptions()), activate)
}