From 1c5b8d8f507c83d959a119dc68f36346646e17a1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Adam=20=C5=A0trauch?= Date: Thu, 1 Feb 2024 21:57:34 +0100 Subject: [PATCH] Add better debug message to SetTechnology --- containers/types.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/containers/types.go b/containers/types.go index 0ab0f9f..0138a72 100644 --- a/containers/types.go +++ b/containers/types.go @@ -430,7 +430,7 @@ func (c *Container) SetTechnology(tech string, version string) error { output, err = driver.Exec(c.App.Name, []string{"su", "app", "-c", "rosti " + tech + " " + version}, "", []string{}, false) } - log.Printf("DEBUG: enable tech for %s output: %s", c.App.Name, string(*output)) + log.Printf("DEBUG: enable tech %s/%s for %s output: %s", tech, version, c.App.Name, string(*output)) return err }