summaryrefslogtreecommitdiff
path: root/libpod/container_api.go
diff options
context:
space:
mode:
authorMatthew Heon <matthew.heon@gmail.com>2018-03-15 10:14:57 -0400
committerAtomic Bot <atomic-devel@projectatomic.io>2018-03-15 17:45:11 +0000
commit1856703e38e67ad5ab5e634757fe5fe0ccd34d8e (patch)
tree8bde5e97006fcb7f1d05d2ae5b18d8b13e87b5e4 /libpod/container_api.go
parentd176e9f781148459fd56fc39cadcc229e565252b (diff)
downloadpodman-1856703e38e67ad5ab5e634757fe5fe0ccd34d8e.tar.gz
podman-1856703e38e67ad5ab5e634757fe5fe0ccd34d8e.tar.bz2
podman-1856703e38e67ad5ab5e634757fe5fe0ccd34d8e.zip
Add additional debug logging
Signed-off-by: Matthew Heon <matthew.heon@gmail.com> Closes: #482 Approved by: baude
Diffstat (limited to 'libpod/container_api.go')
-rw-r--r--libpod/container_api.go4
1 files changed, 4 insertions, 0 deletions
diff --git a/libpod/container_api.go b/libpod/container_api.go
index d3afe82b7..cfffa2232 100644
--- a/libpod/container_api.go
+++ b/libpod/container_api.go
@@ -260,6 +260,8 @@ func (c *Container) Exec(tty, privileged bool, env, cmd []string, user string) e
}
}
+ logrus.Debugf("Creating new exec session in container %s with session id %s", c.ID(), sessionID)
+
execCmd, err := c.runtime.ociRuntime.execContainer(c, cmd, capList, env, tty, user, sessionID)
if err != nil {
return errors.Wrapf(err, "error creating exec command for container %s", c.ID())
@@ -318,6 +320,8 @@ func (c *Container) Exec(tty, privileged bool, env, cmd []string, user string) e
return errors.Wrapf(err, "error saving exec sessions %s for container %s", sessionID, c.ID())
}
+ logrus.Debugf("Successfully started exec session %s in container %s", sessionID, c.ID())
+
// Unlock so other processes can use the container
c.lock.Unlock()
locked = false