diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2022-04-04 13:43:27 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-04-04 13:43:27 -0400 |
commit | 330205ebed7b4e196fbc20788440e409464e267a (patch) | |
tree | 700c5035410f351b7156ea447fa332e4edd06d3f /libpod/container_log_unsupported.go | |
parent | 4f31ade2b251514992dec7cfe9444dd0c62f00b5 (diff) | |
parent | c185d8c0d6774e90f64f4c6a84270c20a9325944 (diff) | |
download | podman-330205ebed7b4e196fbc20788440e409464e267a.tar.gz podman-330205ebed7b4e196fbc20788440e409464e267a.tar.bz2 podman-330205ebed7b4e196fbc20788440e409464e267a.zip |
Merge pull request #13490 from gcalin/13266
pod logs enhancements: option to color logs
Diffstat (limited to 'libpod/container_log_unsupported.go')
-rw-r--r-- | libpod/container_log_unsupported.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/container_log_unsupported.go b/libpod/container_log_unsupported.go index 4f50f9f4c..c84a578cc 100644 --- a/libpod/container_log_unsupported.go +++ b/libpod/container_log_unsupported.go @@ -11,7 +11,7 @@ import ( "github.com/pkg/errors" ) -func (c *Container) readFromJournal(_ context.Context, _ *logs.LogOptions, _ chan *logs.LogLine) error { +func (c *Container) readFromJournal(_ context.Context, _ *logs.LogOptions, _ chan *logs.LogLine, colorID int64) error { return errors.Wrapf(define.ErrOSNotSupported, "Journald logging only enabled with systemd on linux") } |