diff options
Diffstat (limited to 'cmd/kpod/run.go')
-rw-r--r-- | cmd/kpod/run.go | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cmd/kpod/run.go b/cmd/kpod/run.go index 934096c21..7e078f66a 100644 --- a/cmd/kpod/run.go +++ b/cmd/kpod/run.go @@ -100,7 +100,7 @@ func runCmd(c *cli.Context) error { if err := ctr.Init(); err != nil { return err } - logrus.Debug("container storage created for %q", ctr.ID()) + logrus.Debugf("container storage created for %q", ctr.ID()) if c.String("cidfile") != "" { libpod.WriteFile(ctr.ID(), c.String("cidfile")) @@ -119,7 +119,7 @@ func runCmd(c *cli.Context) error { wg.Add(1) // Attach to the running container go func() { - logrus.Debug("trying to attach to the container %s", ctr.ID()) + logrus.Debugf("trying to attach to the container %s", ctr.ID()) defer wg.Done() if err := ctr.Attach(false, c.String("detach-keys"), attached); err != nil { logrus.Errorf("unable to attach to container %s: %q", ctr.ID(), err) |