From 88262a27d86674045b762683609f3e4d4f9142fc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Sun, 26 May 2024 01:08:44 +0200 Subject: [PATCH] Better debug --- containers/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/types.go b/containers/types.go index 53c127f..f9110b6 100644 --- a/containers/types.go +++ b/containers/types.go @@ -565,7 +565,7 @@ func (c *Container) GetPrimaryTech() (apps.AppTech, error) { rawTech := parts[3] techParts := strings.Split(rawTech, "-") if len(techParts) != 2 { - return tech, errors.New("wrong number of tech parts") + return tech, errors.New("wrong number of tech parts (" + rawTech + ")") } return apps.AppTech{ Name: techParts[0],