diff options
author | baude <bbaude@redhat.com> | 2019-08-01 12:43:21 -0500 |
---|---|---|
committer | baude <bbaude@redhat.com> | 2019-08-02 20:05:27 -0500 |
commit | 63eef5a23415380bdc3975c90fc88305a0380a61 (patch) | |
tree | ee58434bb3c92258d3ff899b9e234be31aebd6c4 /libpod/events/config.go | |
parent | 3cc9ab8992833ddf952df479ffb239c61845fa2e (diff) | |
download | podman-63eef5a23415380bdc3975c90fc88305a0380a61.tar.gz podman-63eef5a23415380bdc3975c90fc88305a0380a61.tar.bz2 podman-63eef5a23415380bdc3975c90fc88305a0380a61.zip |
add eventlogger to info
to help with future debugging, we now display the type of event logger
being used inside podman info -> host.
Signed-off-by: baude <bbaude@redhat.com>
Diffstat (limited to 'libpod/events/config.go')
-rw-r--r-- | libpod/events/config.go | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/libpod/events/config.go b/libpod/events/config.go index 96172d47b..da1d73013 100644 --- a/libpod/events/config.go +++ b/libpod/events/config.go @@ -53,6 +53,8 @@ type Eventer interface { Write(event Event) error // Read an event from the backend Read(options ReadOptions) error + // String returns the type of event logger + String() string } // ReadOptions describe the attributes needed to read event logs |