summaryrefslogtreecommitdiff
path: root/libpod/container_log_unsupported.go
blob: 0ec5740e24d82b4415d750e0f9c8a8e715601cf2 (plain)
1
2
3
4
5
6
7
8
9
10
11
//+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")
}