fix: show when logs dont get collected

See toolshed/abra#575
This commit is contained in:
2025-08-29 09:58:26 +02:00
parent e23c6197b5
commit e019142c9e

View File

@ -626,6 +626,8 @@ func WaitOnServices(ctx context.Context, cl *dockerClient.Client, opts WaitOpts)
} }
errs = append(errs, errors.New(i18n.G("logs: %s", logsPath))) errs = append(errs, errors.New(i18n.G("logs: %s", logsPath)))
} else {
log.Warn(i18n.G("logs: no log output received from deployment"))
} }
return stdlibErr.Join(errs...) return stdlibErr.Join(errs...)