summaryrefslogtreecommitdiff
path: root/cmd/kpod/attach.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/kpod/attach.go')
-rw-r--r--cmd/kpod/attach.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/kpod/attach.go b/cmd/kpod/attach.go
index d319ff70d..700023abe 100644
--- a/cmd/kpod/attach.go
+++ b/cmd/kpod/attach.go
@@ -71,7 +71,7 @@ func attachCmd(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(c.Bool("no-stdin"), c.String("detach-keys"), attached); err != nil {
logrus.Errorf("unable to attach to container %s: %q", ctr.ID(), err)