mirror of
https://github.com/podman-container-tools/podman.git
synced 2026-08-11 11:25:45 +00:00
this is phase 2 for the removal of libpod from main. Signed-off-by: baude <bbaude@redhat.com>
13 lines
374 B
Go
13 lines
374 B
Go
//+build !linux !systemd
|
|
|
|
package libpod
|
|
|
|
import (
|
|
"github.com/containers/libpod/libpod/define"
|
|
"github.com/containers/libpod/libpod/logs"
|
|
"github.com/pkg/errors"
|
|
)
|
|
|
|
func (c *Container) readFromJournal(options *logs.LogOptions, logChannel chan *logs.LogLine) error {
|
|
return errors.Wrapf(define.ErrOSNotSupported, "Journald logging only enabled with systemd on linux")
|
|
}
|