diff options
author | Valentin Rothberg <vrothberg@suse.com> | 2018-08-09 13:35:58 +0200 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2018-08-09 12:24:24 +0000 |
commit | e9b23f7cca7bb91c27d8df117679ade545c8356e (patch) | |
tree | 1a6e0f145d4d2147c2431970b813dfb454d81cd2 | |
parent | 06fafe4cd04f29ee19078d6e78fdd792f2c1a37e (diff) | |
download | podman-e9b23f7cca7bb91c27d8df117679ade545c8356e.tar.gz podman-e9b23f7cca7bb91c27d8df117679ade545c8356e.tar.bz2 podman-e9b23f7cca7bb91c27d8df117679ade545c8356e.zip |
oci.go: syslog: fix debug formatting
Signed-off-by: Valentin Rothberg <vrothberg@suse.com>
Closes: #1242
Approved by: rhatdan
-rw-r--r-- | libpod/oci.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/oci.go b/libpod/oci.go index 11224cf91..d98ab433f 100644 --- a/libpod/oci.go +++ b/libpod/oci.go @@ -283,7 +283,7 @@ func (r *OCIRuntime) createOCIContainer(ctr *Container, cgroupParent string) (er args = append(args, "--log-level", logLevel.String()) if logLevel == logrus.DebugLevel { - logrus.Debug("%s messages will be logged to syslog", r.conmonPath) + logrus.Debugf("%s messages will be logged to syslog", r.conmonPath) args = append(args, "--syslog") } |