9 lines
232 B
Go
9 lines
232 B
Go
//go:build (linux && !systemd) || freebsd
|
|
|
|
package events
|
|
|
|
// newJournalDEventer always returns an error if libsystemd not found
|
|
func newJournalDEventer(options EventerOptions) (Eventer, error) {
|
|
return nil, ErrNoJournaldLogging
|
|
}
|