From 578fabe887ed327186398435e4d4435e32297f8f Mon Sep 17 00:00:00 2001 From: maxcask Date: Mon, 18 Aug 2025 12:42:45 +0300 Subject: [PATCH] Update publish.go --- pkg/npm/publish.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/npm/publish.go b/pkg/npm/publish.go index 5fab18fc1..c13892092 100644 --- a/pkg/npm/publish.go +++ b/pkg/npm/publish.go @@ -129,7 +129,7 @@ func (exec *Execute) publish(packageJSON, registry, username, password string, p // where it states: the presence of auth related settings that are not scoped to a specific registry found in a config file // is no longer supported and will throw errors // printing registry and credentials that added - log.Entry().Infof("Added: registry %s, user %s", registry, username) + log.Entry().Debugf("Added: registry %s, user %s", registry, username) npmrc.Set(fmt.Sprintf("%s:%s", strings.TrimPrefix(registry, "https:"), "_auth"), CredentialUtils.EncodeUsernamePassword(username, password)) npmrc.Set("always-auth", "true") }