go_goutils/logging/errs_linux.go

11 lines
280 B
Go
Raw Normal View History

2022-01-05 05:15:38 -05:00
package logging
import (
2025-02-10 12:54:12 -05:00
"errors"
2022-01-05 05:15:38 -05:00
)
var (
// ErrNoSysD indicates that the user attempted to add a SystemDLogger to a MultiLogger but systemd is unavailable.
ErrNoSysD error = errors.New("a systemd (journald) Logger was requested but systemd is unavailable on this system")
)