summaryrefslogtreecommitdiff
path: root/libpod/container_log_unsupported.go
blob: 380d317b5ffbdc4d3ddc8e862c8412953bea978b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
//+build !linux !systemd

package libpod

import (
	"github.com/containers/libpod/libpod/define"
	"github.com/pkg/errors"
)

func (c *Container) readFromJournal(options *LogOptions, logChannel chan *LogLine) error {
	return errors.Wrapf(define.ErrOSNotSupported, "Journald logging only enabled with systemd on linux")
}