We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9befa0f commit 29d5cefCopy full SHA for 29d5cef
components/gitpod-cli/cmd/ports-list.go
@@ -7,6 +7,7 @@ package cmd
7
import (
8
"context"
9
"fmt"
10
+ "github.com/go-errors/errors"
11
"os"
12
"sort"
13
"time"
@@ -26,6 +27,9 @@ var listPortsCmd = &cobra.Command{
26
27
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
28
defer cancel()
29
30
+ err := errors.New(errors.Errorf("Another Error Test"))
31
+ utils.LogError(ctx, err, "We're testing the error logging.")
32
+
33
ports, portsListError := supervisor_helper.GetPortsList(ctx)
34
35
if portsListError != nil {
0 commit comments