fix: use correct args for debug log inputs

This commit is contained in:
2021-09-14 16:14:09 +02:00
parent d290a4ec0b
commit b6fe86f2ad
2 changed files with 2 additions and 2 deletions

View File

@ -295,7 +295,7 @@ func GetAppComposeConfig(recipe string, opts stack.Deploy, appEnv AppEnv) (*comp
return &composetypes.Config{}, err
}
logrus.Debugf("retrieved '%s' for '%s'", compose, recipe)
logrus.Debugf("retrieved '%s' for '%s'", compose.Filename, recipe)
return compose, nil
}