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 4bc8994 commit 9f77d71Copy full SHA for 9f77d71
peer/conn.go
@@ -288,7 +288,7 @@ func (c *Conn) negotiate() {
288
_ = c.CloseWithError(xerrors.Errorf("set local description: %w", err))
289
return
290
}
291
- c.opts.Logger.Debug(context.Background(), "sending offer")
+ c.opts.Logger.Debug(context.Background(), "sending offer", slog.F("offer", offer))
292
select {
293
case <-c.closed:
294
@@ -327,7 +327,7 @@ func (c *Conn) negotiate() {
327
328
329
330
- c.opts.Logger.Debug(context.Background(), "sending answer")
+ c.opts.Logger.Debug(context.Background(), "sending answer", slog.F("answer", answer))
331
332
333
0 commit comments