Files
podman/libpod/container_log_unsupported.go
Peter Hunt 51bdf29f04 Address comments
Signed-off-by: Peter Hunt <pehunt@redhat.com>
2019-05-28 11:10:57 -04:00

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")
}