summaryrefslogtreecommitdiff
path: root/libpod/container_log_unsupported.go
diff options
context:
space:
mode:
authorPeter Hunt <pehunt@redhat.com>2019-05-20 13:58:31 -0400
committerPeter Hunt <pehunt@redhat.com>2019-05-28 11:10:57 -0400
commit51bdf29f0493827ce3eb278a193d0a7402add896 (patch)
tree685eb00a699d96bc0f5174ee7b9b7d51d6a851b9 /libpod/container_log_unsupported.go
parent02f971131a3bb71615d15a45df808edd0fa88266 (diff)
downloadpodman-51bdf29f0493827ce3eb278a193d0a7402add896.tar.gz
podman-51bdf29f0493827ce3eb278a193d0a7402add896.tar.bz2
podman-51bdf29f0493827ce3eb278a193d0a7402add896.zip
Address comments
Signed-off-by: Peter Hunt <pehunt@redhat.com>
Diffstat (limited to 'libpod/container_log_unsupported.go')
-rw-r--r--libpod/container_log_unsupported.go8
1 files changed, 6 insertions, 2 deletions
diff --git a/libpod/container_log_unsupported.go b/libpod/container_log_unsupported.go
index 0c3d41620..0ec5740e2 100644
--- a/libpod/container_log_unsupported.go
+++ b/libpod/container_log_unsupported.go
@@ -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")
}