diff options
author | Daniel J Walsh <dwalsh@redhat.com> | 2017-12-11 14:03:21 -0600 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-12-11 14:03:21 -0600 |
commit | f38e2d0cd29caf3304f4f1efcb5b1d071cb95baf (patch) | |
tree | 94a413875065ede3e73bd429425ca62629eba326 /cmd/kpod/spec.go | |
parent | b85d0fa4ea5b6515088a3475a56a44c0cee5bfc5 (diff) | |
parent | e64da85ccbd48e619401dd155b79fa4890e2684b (diff) | |
download | podman-f38e2d0cd29caf3304f4f1efcb5b1d071cb95baf.tar.gz podman-f38e2d0cd29caf3304f4f1efcb5b1d071cb95baf.tar.bz2 podman-f38e2d0cd29caf3304f4f1efcb5b1d071cb95baf.zip |
Merge pull request #103 from surajssd/fix-debug-statement
Use debugf to allow parsing of format specifier
Diffstat (limited to 'cmd/kpod/spec.go')
-rw-r--r-- | cmd/kpod/spec.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/kpod/spec.go b/cmd/kpod/spec.go index 5d6fe8879..b200ed77a 100644 --- a/cmd/kpod/spec.go +++ b/cmd/kpod/spec.go @@ -526,7 +526,7 @@ func (c *createConfig) GetContainerCreateOptions() ([]libpod.CtrCreateOption, er options = append(options, libpod.WithStdin()) } if c.name != "" { - logrus.Debug("appending name %s", c.name) + logrus.Debugf("appending name %s", c.name) options = append(options, libpod.WithName(c.name)) } |