From b8d1ce03a142d386e88ed505c1895d50b47448a5 Mon Sep 17 00:00:00 2001 From: Jhon Honce Date: Wed, 21 Feb 2018 16:54:24 -0700 Subject: Add tests and cleanup - Added run_cgroup_parent_test.go - Cleaned up calls to logrus Signed-off-by: Jhon Honce Closes: #370 Approved by: rhatdan --- cmd/podman/run.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'cmd') 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) -- cgit v1.2.3-54-g00ecf