Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 795a283

Browse files
authored
fix: use zero'd logger for Dial when no logger is passed (#430)
1 parent 923b4e9 commit 795a283

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

wsnet/dial.go

+1-4
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,6 @@ import (
88
"io"
99
"net"
1010
"net/url"
11-
"os"
1211
"sync"
1312
"time"
1413

@@ -18,7 +17,6 @@ import (
1817
"nhooyr.io/websocket"
1918

2019
"cdr.dev/slog"
21-
"cdr.dev/slog/sloggers/sloghuman"
2220

2321
"cdr.dev/coder-cli/coder-sdk"
2422
)
@@ -83,8 +81,7 @@ func Dial(ctx context.Context, conn net.Conn, options *DialOptions) (*Dialer, er
8381
options = &DialOptions{}
8482
}
8583
if options.Log == nil {
86-
log := slog.Make(sloghuman.Sink(os.Stderr)).Leveled(slog.LevelInfo).Named("wsnet_dial")
87-
options.Log = &log
84+
options.Log = &slog.Logger{}
8885
}
8986
log := *options.Log
9087
if options.ICEServers == nil {

0 commit comments

Comments
 (0)