Skip to content

Commit

Permalink
Fix lint error
Browse files Browse the repository at this point in the history
Related to #420
  • Loading branch information
enobufs committed Nov 18, 2024
1 parent cd9025a commit 8e8bd06
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lt_cred.go
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ func LongTermTURNRESTAuthHandler(sharedSecret string, l logging.LeveledLogger) A
l = logging.NewDefaultLoggerFactory().NewLogger("turn")
}
return func(username, realm string, srcAddr net.Addr) (key []byte, ok bool) {
l.Tracef("Authentication username=%q realm=%q srcAddr=%v\n", username, realm, srcAddr)
l.Tracef("Authentication username=%q realm=%q srcAddr=%v", username, realm, srcAddr)
timestamp := strings.Split(username, ":")[0]
t, err := strconv.Atoi(timestamp)
if err != nil {
Expand Down

0 comments on commit 8e8bd06

Please sign in to comment.