From 012da2c27be0b31bb8500c0877f1062f8e713b30 Mon Sep 17 00:00:00 2001 From: Guillaume Tardif Date: Mon, 22 Feb 2021 14:57:49 +0100 Subject: [PATCH] Fix linter Signed-off-by: Guillaume Tardif --- cli/cmd/compose/logs.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/cli/cmd/compose/logs.go b/cli/cmd/compose/logs.go index d2a6311b0..45e86df48 100644 --- a/cli/cmd/compose/logs.go +++ b/cli/cmd/compose/logs.go @@ -73,9 +73,9 @@ func runLogs(ctx context.Context, opts logsOptions, services []string) error { } consumer := formatter.NewLogConsumer(ctx, os.Stdout, !opts.noColor, !opts.noPrefix) return c.ComposeService().Logs(ctx, projectName, consumer, compose.LogOptions{ - Services: services, - Follow: opts.follow, - Tail: opts.tail, + Services: services, + Follow: opts.follow, + Tail: opts.tail, Timestamps: opts.timestamps, }) }