From 6b06e9b77c8191096eeb82ac54c59b894f87da8c Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Wed, 4 Aug 2021 15:24:29 -0400 Subject: Switch eventlogger to journald by default [NO TESTS NEEDED] Since we are just testing the default. Signed-off-by: Daniel J Walsh --- libpod/container_log_unsupported.go | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'libpod/container_log_unsupported.go') diff --git a/libpod/container_log_unsupported.go b/libpod/container_log_unsupported.go index d10082141..a551df942 100644 --- a/libpod/container_log_unsupported.go +++ b/libpod/container_log_unsupported.go @@ -13,3 +13,7 @@ import ( func (c *Container) readFromJournal(_ context.Context, _ *logs.LogOptions, _ chan *logs.LogLine) error { return errors.Wrapf(define.ErrOSNotSupported, "Journald logging only enabled with systemd on linux") } + +func (c *Container) initializeJournal(ctx context.Context) error { + return errors.Wrapf(define.ErrOSNotSupported, "Journald logging only enabled with systemd on linux") +} -- cgit v1.2.3-54-g00ecf