0
Fork 0
mirror of https://codeberg.org/SafeTwitch/safetwitch-backend.git synced 2024-12-22 05:02:58 -05:00

Remove debug log

This commit is contained in:
dragongoose 2023-08-22 00:03:48 -04:00
parent 71fd5dbe37
commit 4d66e04b27
No known key found for this signature in database
GPG key ID: 01397EEC371CDAA5

View file

@ -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 {