summaryrefslogtreecommitdiff
path: root/libpod/oci_conmon_linux.go
diff options
context:
space:
mode:
authorOpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com>2021-09-29 15:33:06 -0400
committerGitHub <noreply@github.com>2021-09-29 15:33:06 -0400
commitb187dfef20df5cd853b46fe7f56d7cfae4ea0bf5 (patch)
tree59fe23fba1b5cba9e51e7c4f6b80e03fec2d1308 /libpod/oci_conmon_linux.go
parentd987f26f1e2449d3237faa0b873d82ce5a89e0ee (diff)
parent3ce98a5ec28840f2d7836a002a156974f37f6c0e (diff)
downloadpodman-b187dfef20df5cd853b46fe7f56d7cfae4ea0bf5.tar.gz
podman-b187dfef20df5cd853b46fe7f56d7cfae4ea0bf5.tar.bz2
podman-b187dfef20df5cd853b46fe7f56d7cfae4ea0bf5.zip
Merge pull request #11390 from giuseppe/logging-passthrough
logging: new mode -l passthrough
Diffstat (limited to 'libpod/oci_conmon_linux.go')
-rw-r--r--libpod/oci_conmon_linux.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/libpod/oci_conmon_linux.go b/libpod/oci_conmon_linux.go
index f82fc4ce6..71a7b29fa 100644
--- a/libpod/oci_conmon_linux.go
+++ b/libpod/oci_conmon_linux.go
@@ -1288,6 +1288,8 @@ func (r *ConmonOCIRuntime) sharedConmonArgs(ctr *Container, cuuid, bundlePath, p
logDriverArg = define.JournaldLogging
case define.NoLogging:
logDriverArg = define.NoLogging
+ case define.PassthroughLogging:
+ logDriverArg = define.PassthroughLogging
case define.JSONLogging:
fallthrough
//lint:ignore ST1015 the default case has to be here