diff options
author | openshift-ci[bot] <75433959+openshift-ci[bot]@users.noreply.github.com> | 2022-07-12 11:24:13 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-07-12 11:24:13 +0000 |
commit | 4d111fa9af0352d25d4c9ecc7d203f20f5727d09 (patch) | |
tree | d712b01951914e5d3c9427e2f8b07e8950cc917e | |
parent | 151d7584c193a6f92cd54f61d28ad8b0ff0c31b6 (diff) | |
parent | ffbc2adf70dd17e02b112b0e75de775df2775102 (diff) | |
download | podman-4d111fa9af0352d25d4c9ecc7d203f20f5727d09.tar.gz podman-4d111fa9af0352d25d4c9ecc7d203f20f5727d09.tar.bz2 podman-4d111fa9af0352d25d4c9ecc7d203f20f5727d09.zip |
Merge pull request #14901 from tyler92/fix-trace-log
fix wrong log message on Trace level
-rw-r--r-- | libpod/oci_conmon_linux.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libpod/oci_conmon_linux.go b/libpod/oci_conmon_linux.go index abc579519..cb76de72c 100644 --- a/libpod/oci_conmon_linux.go +++ b/libpod/oci_conmon_linux.go @@ -133,7 +133,7 @@ func newConmonOCIRuntime(name string, paths []string, conmonPath string, runtime continue } foundPath = true - logrus.Tracef("found runtime %q", runtime.path) + logrus.Tracef("found runtime %q", path) runtime.path = path break } |