github.com/containers/podman/v4@v4.9.4/libpod/events/journal_unsupported.go (about) 1 //go:build !systemd 2 // +build !systemd 3 4 package events 5 6 // DefaultEventerType is logfile when systemd is not present 7 const DefaultEventerType = LogFile 8 9 // newEventJournalD always returns an error if libsystemd not found 10 func newEventJournalD(options EventerOptions) (Eventer, error) { 11 return nil, ErrNoJournaldLogging 12 }