summaryrefslogtreecommitdiff
path: root/libpod/events/journal_unsupported.go
blob: c91d81f12a9a66957e95d9854fbc024c872f632a (plain)
1
2
3
4
5
6
7
8
// +build !systemd

package events

// newEventJournalD always returns an error if libsystemd not found
func newEventJournalD(options EventerOptions) (Eventer, error) {
	return nil, ErrNoJournaldLogging
}