diff options
author | Matthew Heon <matthew.heon@gmail.com> | 2018-03-02 14:28:32 -0500 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-03-02 19:58:15 +0000 |
commit | 497190db1b6c0101225f9abbf3d249fd06bf4e4c (patch) | |
tree | 09faedc277036219b8beed2a42e91f801df2b052 /cmd/podman | |
parent | 11143676fa0d70357cd65127cee53d98afe21a47 (diff) | |
download | podman-497190db1b6c0101225f9abbf3d249fd06bf4e4c.tar.gz podman-497190db1b6c0101225f9abbf3d249fd06bf4e4c.tar.bz2 podman-497190db1b6c0101225f9abbf3d249fd06bf4e4c.zip |
Adjust podman logs error message for clarity
Signed-off-by: Matthew Heon <matthew.heon@gmail.com>
Closes: #441
Approved by: rhatdan
Diffstat (limited to 'cmd/podman')
-rw-r--r-- | cmd/podman/logs.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/podman/logs.go b/cmd/podman/logs.go index 1183abaa2..6e5ab03dc 100644 --- a/cmd/podman/logs.go +++ b/cmd/podman/logs.go @@ -117,7 +117,7 @@ func logsCmd(c *cli.Context) error { // Exit cleanly in this case if _, err := os.Stat(logPath); err != nil { if state == libpod.ContainerStateConfigured { - logrus.Debugf("Container has not been created, no logs exist yet") + logrus.Debugf("Container has not been started, no logs exist yet") return nil } } |