Remove log
Some checks failed
Run Go Tests / Run Tests (pull_request) Has been cancelled

This commit is contained in:
Javier Feliz 2025-02-13 23:56:06 -05:00
parent e5aa8fe187
commit b6b6db6457

View File

@ -3,7 +3,6 @@ package validation
import ( import (
"errors" "errors"
"fmt" "fmt"
"log"
neturl "net/url" neturl "net/url"
"strings" "strings"
) )
@ -46,7 +45,6 @@ func IsMusicUrl(url string) (bool, error) {
} }
for _, host := range musicHosts { for _, host := range musicHosts {
log.Println(parsed.Host)
if host == parsed.Host { if host == parsed.Host {
return true, nil return true, nil
} }