summaryrefslogtreecommitdiff
path: root/libpod/runtime_ctr.go
diff options
context:
space:
mode:
authorPeter Hunt <pehunt@redhat.com>2019-05-20 13:58:31 -0400
committerPeter Hunt <pehunt@redhat.com>2019-05-28 11:10:57 -0400
commit51bdf29f0493827ce3eb278a193d0a7402add896 (patch)
tree685eb00a699d96bc0f5174ee7b9b7d51d6a851b9 /libpod/runtime_ctr.go
parent02f971131a3bb71615d15a45df808edd0fa88266 (diff)
downloadpodman-51bdf29f0493827ce3eb278a193d0a7402add896.tar.gz
podman-51bdf29f0493827ce3eb278a193d0a7402add896.tar.bz2
podman-51bdf29f0493827ce3eb278a193d0a7402add896.zip
Address comments
Signed-off-by: Peter Hunt <pehunt@redhat.com>
Diffstat (limited to 'libpod/runtime_ctr.go')
-rw-r--r--libpod/runtime_ctr.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/libpod/runtime_ctr.go b/libpod/runtime_ctr.go
index 25db10d33..db7a5e5c3 100644
--- a/libpod/runtime_ctr.go
+++ b/libpod/runtime_ctr.go
@@ -196,8 +196,7 @@ func (r *Runtime) newContainer(ctx context.Context, rSpec *spec.Spec, options ..
}
}
- // TODO magic string
- if ctr.config.LogPath == "" && ctr.config.LogDriver != "journald" {
+ if ctr.config.LogPath == "" && ctr.config.LogDriver != JournaldLogging {
ctr.config.LogPath = filepath.Join(ctr.config.StaticDir, "ctr.log")
}