From b19791c0b60b4f113d80e17a9ca9c7c2074be465 Mon Sep 17 00:00:00 2001 From: Ashley Cui Date: Mon, 22 Feb 2021 15:13:46 -0500 Subject: Tidy duplicate log tests Some log tests were duplicated, and some didn't need to be repeated for every driver. Also, added some comments Signed-off-by: Ashley Cui --- libpod/container_log.go | 1 - 1 file changed, 1 deletion(-) (limited to 'libpod/container_log.go') diff --git a/libpod/container_log.go b/libpod/container_log.go index a3b700004..c207df819 100644 --- a/libpod/container_log.go +++ b/libpod/container_log.go @@ -29,7 +29,6 @@ func (c *Container) ReadLog(ctx context.Context, options *logs.LogOptions, logCh case define.NoLogging: return errors.Wrapf(define.ErrNoLogs, "this container is using the 'none' log driver, cannot read logs") case define.JournaldLogging: - // TODO Skip sending logs until journald logs can be read return c.readFromJournal(ctx, options, logChannel) case define.JSONLogging: // TODO provide a separate implementation of this when Conmon -- cgit v1.2.3-54-g00ecf