blob: 6beaf7c3ab3346c16c457bc57bd52da39dcb0487 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
//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
}
|