Files
go-slogd/pkg/slogd/textHandler.go
Jan Tytgat 51964ac5e6 move slogd package from go-kit
Signed-off-by: Jan Tytgat <jan.tytgat@corelayer.eu>
2025-04-16 20:59:46 +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)
}