diff --git a/cli/app/logs.go b/cli/app/logs.go index f2f1e789..ae32475b 100644 --- a/cli/app/logs.go +++ b/cli/app/logs.go @@ -31,7 +31,7 @@ func stackLogs(c *cli.Context, stackName string, client *dockerClient.Client) { wg.Add(1) go func(s string) { logOpts := types.ContainerLogsOptions{ - Details: true, + Details: false, Follow: true, ShowStderr: true, ShowStdout: true, @@ -88,7 +88,7 @@ var appLogsCommand = &cli.Command{ } logOpts := types.ContainerLogsOptions{ - Details: true, + Details: false, Follow: true, ShowStderr: true, ShowStdout: true,