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