From e019142c9e82f26147bf16240ef7f4e0de4b1cef Mon Sep 17 00:00:00 2001 From: decentral1se Date: Fri, 29 Aug 2025 09:58:26 +0200 Subject: [PATCH] fix: show when logs dont get collected See https://git.coopcloud.tech/toolshed/abra/issues/575 --- pkg/upstream/stack/stack.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/pkg/upstream/stack/stack.go b/pkg/upstream/stack/stack.go index 628ee414aa..129c18d276 100644 --- a/pkg/upstream/stack/stack.go +++ b/pkg/upstream/stack/stack.go @@ -626,6 +626,8 @@ func WaitOnServices(ctx context.Context, cl *dockerClient.Client, opts WaitOpts) } 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...)