Skip to content

Commit

Permalink
remove extraneous log
Browse files Browse the repository at this point in the history
  • Loading branch information
iSchluff committed Nov 16, 2020
1 parent a4af775 commit 15fbac6
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions auth/static.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
package auth

import (
"log"

"github.com/voc/srtrelay/stream"
)

Expand All @@ -23,7 +21,6 @@ func NewStaticAuth(config StaticAuthConfig) *staticAuth {
// Implement Authenticator
func (auth *staticAuth) Authenticate(streamid stream.StreamID) bool {
for _, allowed := range auth.allow {
log.Println("test", streamid, allowed)
if streamid.Match(allowed) {
return true
}
Expand Down

0 comments on commit 15fbac6

Please sign in to comment.