//go:build windows package logging import ( "context" "errors" "log/slog" ) func NewHostSink(ctx context.Context, level slog.Level, tag string, encoder Encoder) (Sink, error) { return nil, errors.ErrUnsupported } func IsDaemonManaged() bool { return false }