Skip to content

Commit 9fb5bef

Browse files
committed
Remove trailing newlines from log messages
1 parent 3ff9392 commit 9fb5bef

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lt_cred.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ func LongTermTURNRESTAuthHandler(sharedSecret string, l logging.LeveledLogger) A
7979
l = logging.NewDefaultLoggerFactory().NewLogger("turn")
8080
}
8181
return func(username, realm string, srcAddr net.Addr) (key []byte, ok bool) {
82-
l.Tracef("Authentication username=%q realm=%q srcAddr=%v\n", username, realm, srcAddr)
82+
l.Tracef("Authentication username=%q realm=%q srcAddr=%v", username, realm, srcAddr)
8383
timestamp := strings.Split(username, ":")[0]
8484
t, err := strconv.Atoi(timestamp)
8585
if err != nil {

0 commit comments

Comments
 (0)