diff options
author | Brent Baude <bbaude@redhat.com> | 2020-02-14 10:18:17 -0600 |
---|---|---|
committer | Brent Baude <bbaude@redhat.com> | 2020-02-14 10:18:17 -0600 |
commit | b1034eabe3c3eca0d7c017e59e83d5f4c921e161 (patch) | |
tree | 398ef3515bf0f29c5474cd6400b8deb4ff8bac8d /pkg/api/handlers/libpod/containers.go | |
parent | 0c060dace19710716ff8f3a65865a295312d9d94 (diff) | |
download | podman-b1034eabe3c3eca0d7c017e59e83d5f4c921e161.tar.gz podman-b1034eabe3c3eca0d7c017e59e83d5f4c921e161.tar.bz2 podman-b1034eabe3c3eca0d7c017e59e83d5f4c921e161.zip |
apiv2 libpod container logs
wire up containers logs for libpod side of the house, same as compat.
Signed-off-by: Brent Baude <bbaude@redhat.com>
Diffstat (limited to 'pkg/api/handlers/libpod/containers.go')
-rw-r--r-- | pkg/api/handlers/libpod/containers.go | 7 |
1 files changed, 0 insertions, 7 deletions
diff --git a/pkg/api/handlers/libpod/containers.go b/pkg/api/handlers/libpod/containers.go index ce2836a72..752b004d8 100644 --- a/pkg/api/handlers/libpod/containers.go +++ b/pkg/api/handlers/libpod/containers.go @@ -184,13 +184,6 @@ func WaitContainer(w http.ResponseWriter, r *http.Request) { utils.WriteResponse(w, http.StatusOK, strconv.Itoa(int(exitCode))) } -func LogsFromContainer(w http.ResponseWriter, r *http.Request) { - // follow - // since - // timestamps - // tail string -} - func UnmountContainer(w http.ResponseWriter, r *http.Request) { runtime := r.Context().Value("runtime").(*libpod.Runtime) name := utils.GetName(r) |