Skip to content

Commit

Permalink
chore(cli): report pro list errors as debug instead of error. The err…
Browse files Browse the repository at this point in the history
…or was confusing to users
  • Loading branch information
pascalbreuninger committed Dec 17, 2024
1 parent 3f46926 commit 11b7590
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/workspace/list.go
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ func listProWorkspaces(ctx context.Context, devPodConfig *config.Config, log log
providerConfig,
nil, nil, &buf, log.ErrorStreamOnly().Writer(logrus.ErrorLevel, false), log,
); err != nil {
log.ErrorStreamOnly().Errorf("list workspaces for provider \"%s\": %v", provider, err)
log.ErrorStreamOnly().Debugf("list workspaces for provider \"%s\": %v", provider, err)
continue
}
if buf.Len() == 0 {
Expand Down

0 comments on commit 11b7590

Please sign in to comment.