From 4d66e04b27c163ab4c393a6020fccdb165f4e1eb Mon Sep 17 00:00:00 2001 From: dragongoose Date: Tue, 22 Aug 2023 00:03:48 -0400 Subject: [PATCH] Remove debug log --- extractor/twitch/Clip.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/extractor/twitch/Clip.go b/extractor/twitch/Clip.go index cbc4a39..f706aa9 100644 --- a/extractor/twitch/Clip.go +++ b/extractor/twitch/Clip.go @@ -1,7 +1,6 @@ package twitch import ( - "log" "safetwitch-backend/extractor" "safetwitch-backend/extractor/structs" @@ -43,8 +42,6 @@ func GetClipMetadata(clipSlug string, streamerName string) (structs.Video, error return structs.Video{}, err } - log.Println(string(body)) - streamerData := gjson.Get(string(body), "1.data") parsedSocials, err := ParseSocials(streamerData.String()) if err != nil {