From 095aaaa639ab57c594bb80bfefbfaed2a2fdff92 Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Tue, 30 Jan 2018 06:23:58 +0100 Subject: Allow users to specify logpath Signed-off-by: Daniel J Walsh Closes: #135 Approved by: mheon --- libpod/container_internal.go | 5 ----- 1 file changed, 5 deletions(-) (limited to 'libpod/container_internal.go') diff --git a/libpod/container_internal.go b/libpod/container_internal.go index fd8e826ba..77e456fe1 100644 --- a/libpod/container_internal.go +++ b/libpod/container_internal.go @@ -91,11 +91,6 @@ func (c *Container) bundlePath() string { return c.config.StaticDir } -// The path to the container's logs file -func (c *Container) logPath() string { - return filepath.Join(c.config.StaticDir, "ctr.log") -} - // Retrieves the path of the container's attach socket func (c *Container) attachSocketPath() string { return filepath.Join(c.runtime.ociRuntime.socketsDir, c.ID(), "attach") -- cgit v1.2.3-54-g00ecf