diff options
Diffstat (limited to 'cmd/podman/run.go')
-rw-r--r-- | cmd/podman/run.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/cmd/podman/run.go b/cmd/podman/run.go index 32b3b9bdc..f13e293bc 100644 --- a/cmd/podman/run.go +++ b/cmd/podman/run.go @@ -84,10 +84,12 @@ func runCmd(c *cli.Context) error { return err } - logrus.Debug("new container created ", ctr.ID()) + if logrus.GetLevel() == logrus.DebugLevel { + logrus.Debugf("New container created %q", ctr.ID()) - p, _ := ctr.CGroupPath()("") - logrus.Debugf("createConfig.CgroupParent %v for %v", p, ctr.ID()) + p, _ := ctr.CGroupPath()("") + logrus.Debugf("container %q has CgroupParent %q", ctr.ID(), p) + } if err := ctr.Init(); err != nil { // This means the command did not exist @@ -107,8 +109,6 @@ func runCmd(c *cli.Context) error { return err } - logrus.Debug("new container created ", ctr.ID()) - if c.String("cidfile") != "" { if err := libpod.WriteFile(ctr.ID(), c.String("cidfile")); err != nil { logrus.Error(err) |