From 8e111dc32f2947083f03e92787ba1e5752603fcf Mon Sep 17 00:00:00 2001 From: decentral1se Date: Thu, 16 Sep 2021 09:48:28 +0200 Subject: [PATCH] fix: use correct debug function --- pkg/config/app.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/app.go b/pkg/config/app.go index 84fa72971..92655d7e6 100644 --- a/pkg/config/app.go +++ b/pkg/config/app.go @@ -316,7 +316,7 @@ func GetAppComposeFiles(recipe string, appEnv AppEnv) ([]string, error) { var composeFiles []string composeFileEnvVar := appEnv["COMPOSE_FILE"] envVars := strings.Split(composeFileEnvVar, ":") - logrus.Debug("COMPOSE_FILE detected ('%s'), loading '%s'", composeFileEnvVar, envVars) + logrus.Debugf("COMPOSE_FILE detected ('%s'), loading '%s'", composeFileEnvVar, envVars) for _, file := range strings.Split(composeFileEnvVar, ":") { path := fmt.Sprintf("%s/%s/%s", APPS_DIR, recipe, file) composeFiles = append(composeFiles, path)