From fc29ca6fce2480e7af84285fb21c3923695d557c Mon Sep 17 00:00:00 2001 From: cellarspoon Date: Fri, 24 Dec 2021 00:25:45 +0100 Subject: [PATCH] refactor: less quotes --- pkg/upstream/stack/stack.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 }