podman/libpod/container_log_unsupported.go

12 lines
267 B
Go

//+build !linux !systemd
package libpod
import (
"github.com/pkg/errors"
)
func (c *Container) readFromJournal(options *LogOptions, logChannel chan *LogLine) error {
return errors.Wrapf(ErrOSNotSupported, "Journald logging only enabled with systemd on linux")
}