github.com/AbhinandanKurakure/podman/v3@v3.4.10/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 }