Skip to content

Commit 29d5cef

Browse files
committed
temp
1 parent 9befa0f commit 29d5cef

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

components/gitpod-cli/cmd/ports-list.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ package cmd
77
import (
88
"context"
99
"fmt"
10+
"github.com/go-errors/errors"
1011
"os"
1112
"sort"
1213
"time"
@@ -26,6 +27,9 @@ var listPortsCmd = &cobra.Command{
2627
ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
2728
defer cancel()
2829

30+
err := errors.New(errors.Errorf("Another Error Test"))
31+
utils.LogError(ctx, err, "We're testing the error logging.")
32+
2933
ports, portsListError := supervisor_helper.GetPortsList(ctx)
3034

3135
if portsListError != nil {

0 commit comments

Comments
 (0)