Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Change to debug log
  • Loading branch information
kylecarbs committed May 10, 2021
commit 7778fbcebba7bd8615d88269a7bd28d915c726a4
4 changes: 2 additions & 2 deletions internal/cmd/tunnel.go
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,7 @@ func (c *tunnneler) start(ctx context.Context) error {
return xerrors.Errorf("dial ice: %w", err)
}

c.log.Info(ctx, "Connecting to workspace...")
c.log.Debug(ctx, "Connecting to workspace...")
wd, err := wsnet.DialWebsocket(ctx, wsnet.ConnectEndpoint(c.brokerAddr, c.workspaceID, c.token), []webrtc.ICEServer{server})
if err != nil {
return xerrors.Errorf("creating workspace dialer: %w", err)
Expand All @@ -135,7 +135,7 @@ func (c *tunnneler) start(ctx context.Context) error {
if err != nil {
return err
}
c.log.Info(ctx, "Connected to workspace!")
c.log.Debug(ctx, "Connected to workspace!")

// proxy via stdio
if c.stdio {
Expand Down