Files
go-slogd/slogd/textHandler.go
Jan Tytgat 08cde7c372 Move slogd out of pkg folder
Signed-off-by: Jan Tytgat <jan.tytgat@corelayer.eu>
2025-04-22 13:32:13 +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)
}