diff --git a/libpod/oci_conmon_common.go b/libpod/oci_conmon_common.go index f87866195d..2393ff9204 100644 --- a/libpod/oci_conmon_common.go +++ b/libpod/oci_conmon_common.go @@ -1387,10 +1387,8 @@ func (r *ConmonOCIRuntime) sharedConmonArgs(ctr *Container, cuuid, bundlePath, p logLevel := logrus.GetLevel() args = append(args, "--log-level", logLevel.String()) - if logLevel == logrus.DebugLevel { - logrus.Debugf("%s messages will be logged to syslog", r.conmonPath) - args = append(args, "--syslog") - } + logrus.Debugf("%s messages will be logged to syslog", r.conmonPath) + args = append(args, "--syslog") size := r.logSizeMax if ctr.config.LogSize > 0 {