fix: easier logs
continuous-integration/drone/push Build is passing Details

Closes coop-cloud/organising#270.
This commit is contained in:
decentral1se 2021-11-26 22:14:29 +01:00
parent 962f566228
commit a90f3b7463
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC
1 changed files with 2 additions and 2 deletions

View File

@ -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,