diff options
author | OpenShift Merge Robot <openshift-merge-robot@users.noreply.github.com> | 2021-09-29 15:33:06 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-29 15:33:06 -0400 |
commit | b187dfef20df5cd853b46fe7f56d7cfae4ea0bf5 (patch) | |
tree | 59fe23fba1b5cba9e51e7c4f6b80e03fec2d1308 /libpod/define/config.go | |
parent | d987f26f1e2449d3237faa0b873d82ce5a89e0ee (diff) | |
parent | 3ce98a5ec28840f2d7836a002a156974f37f6c0e (diff) | |
download | podman-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/define/config.go')
-rw-r--r-- | libpod/define/config.go | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/libpod/define/config.go b/libpod/define/config.go index 6c426f2ec..7a0d39e42 100644 --- a/libpod/define/config.go +++ b/libpod/define/config.go @@ -78,6 +78,9 @@ const JSONLogging = "json-file" // NoLogging is the string conmon expects when specifying to use no log driver whatsoever const NoLogging = "none" +// PassthroughLogging is the string conmon expects when specifying to use the passthrough driver +const PassthroughLogging = "passthrough" + // Strings used for --sdnotify option to podman const ( SdNotifyModeContainer = "container" |