commit 526fe112f08bf65935c3c3b0dee8a59c5a1d1aef
parent 192813fbddc9031071eb9ae1e92d6748529d682f
Author: MTRNord <mtrnord1@gmail.com>
Date: Sat, 17 Feb 2018 13:40:38 +0100
Less Debug log
Diffstat:
1 file changed, 0 insertions(+), 4 deletions(-)
diff --git a/twitter/twitter.go b/twitter/twitter.go
@@ -208,7 +208,6 @@ func (t *TwitterAPI) GetTweets(tweets []int64) ([]byte, error) {
}
for _, t := range tweetsR {
- //fmt.Printf("%+v\n\n\n", t)
JT := Tweet{}
if tweetsSlice[t.IdStr] {
continue
@@ -231,9 +230,6 @@ func (t *TwitterAPI) GetTweets(tweets []int64) ([]byte, error) {
JT.UserID = t.User.IdStr
JT.DisplayName = t.User.Name
JT.UserProfileLink = "https://twitter.com/" + t.User.ScreenName
- fmt.Println("ExtendedFull: ", t.ExtendedTweet.FullText)
- fmt.Println("Full: ", t.FullText)
- fmt.Println("Text: ", t.Text)
if t.ExtendedTweet.FullText != "" {
JT.Text = t.ExtendedTweet.FullText
} else if t.FullText != "" {