mirror of
https://github.com/containers/podman.git
synced 2025-08-06 11:32:07 +08:00
Address comments
Signed-off-by: Peter Hunt <pehunt@redhat.com>
This commit is contained in:
@ -1,7 +1,11 @@
|
||||
//+build !linux
|
||||
//+build !linux !systemd
|
||||
|
||||
package libpod
|
||||
|
||||
import (
|
||||
"github.com/pkg/errors"
|
||||
)
|
||||
|
||||
func (c *Container) readFromJournal(options *LogOptions, logChannel chan *LogLine) error {
|
||||
return ErrOSNotSupported
|
||||
return errors.Wrapf(ErrOSNotSupported, "Journald logging only enabled with systemd on linux")
|
||||
}
|
||||
|
Reference in New Issue
Block a user