Skip to content

Commit 8193d1f

Browse files
authored
Merge pull request #3631 from ActiveState/mitchell/dx-3178-3
Do not log invalid namespaces as errors and to rollbar.
2 parents 0213562 + 76a40ba commit 8193d1f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cmd/state/internal/cmdtree/init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ func newInitCommand(prime *primer.Values) *captain.Command {
4949
if err != nil {
5050
// If the namespace was invalid but an argument was passed, we
5151
// assume it's a project name and not an owner.
52-
logging.Error("Could not parse namespace: %v", err)
52+
logging.Debug("Could not parse namespace: %v", err)
5353
params.ProjectName = params.Namespace
5454
} else {
5555
params.ParsedNS = ns

0 commit comments

Comments
 (0)