diff --git a/pkg/upstream/stack/stack.go b/pkg/upstream/stack/stack.go index 75a5aa04..9361894e 100644 --- a/pkg/upstream/stack/stack.go +++ b/pkg/upstream/stack/stack.go @@ -132,12 +132,12 @@ func IsDeployed(ctx context.Context, cl *dockerclient.Client, stackName string) } } - logrus.Debugf("'%s' has been detected as deployed with version '%s'", stackName, version) + logrus.Debugf("%s has been detected as deployed with version %s", stackName, version) return true, version, nil } - logrus.Debugf("'%s' has been detected as not deployed", stackName) + logrus.Debugf("%s has been detected as not deployed", stackName) return isDeployed, version, nil }