diff options
author | sjlleo <[email protected]> | 2022-05-21 08:33:15 +0800 |
---|---|---|
committer | sjlleo <[email protected]> | 2022-05-21 08:33:15 +0800 |
commit | d41d94d27f1a9c019016c5505688e8edfc7243f6 (patch) | |
tree | df95c8265acbbe922281e54057af66306f1fe6c3 | |
parent | 58b3823ded61031ba9ea5272ddd30429e69012ed (diff) |
Clean: Test Codev3.0
-rw-r--r-- | verify/ipv4.go | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/verify/ipv4.go b/verify/ipv4.go index b7db436..89a0763 100644 --- a/verify/ipv4.go +++ b/verify/ipv4.go @@ -1,7 +1,6 @@ package verify import ( - "log" "strconv" "github.com/sjlleo/netflix-verify/util" @@ -80,7 +79,6 @@ func (v *IPv4Verifier) UnblockTest(MoiveID int) { testURL := NetflixURL_PREFIX + strconv.Itoa(MoiveID) if reCode, err := util.RequestIP(testURL, v.IP, v.LocalAddr); err != nil { - log.Println(reCode) if err.Error() == "Banned" { v.unblockTestChan <- UnblockTestResult{MoiveID, "", nil} } else { |