Skip to content

Commit ab777a1

Browse files
authored
webrtc: fix bug with logger wrapper (#2727)
1 parent 91e1025 commit ab777a1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

p2p/transport/webrtc/logger.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ func (l pionLogger) Trace(s string) {
4040
}
4141

4242
func (l pionLogger) Tracef(s string, args ...interface{}) {
43-
l.StandardLogger.Debugf(s, args)
43+
l.StandardLogger.Debugf(s, args...)
4444
}
4545

4646
// loggerFactory returns pLog for all new logger instances

0 commit comments

Comments
 (0)