From 15fbac6945f83620bfd3f743489c258128ab4cf5 Mon Sep 17 00:00:00 2001 From: Anton Schubert Date: Mon, 16 Nov 2020 01:03:56 +0100 Subject: [PATCH] remove extraneous log --- auth/static.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/auth/static.go b/auth/static.go index af805ce..1d99d9b 100644 --- a/auth/static.go +++ b/auth/static.go @@ -1,8 +1,6 @@ package auth import ( - "log" - "github.com/voc/srtrelay/stream" ) @@ -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 }