From d91e76f6647a7e2fce6a6e78f9ba5c1fd42fc84e Mon Sep 17 00:00:00 2001 From: Alessio Date: Mon, 20 Dec 2021 18:17:39 -0500 Subject: [PATCH] Remove print statements --- scraper/tweet.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/scraper/tweet.go b/scraper/tweet.go index d25733a..1805552 100644 --- a/scraper/tweet.go +++ b/scraper/tweet.go @@ -239,12 +239,10 @@ func GetTweetFull(id TweetID) (tweets []Tweet, retweets []Retweet, users []User, // Find the main tweet and update its "is_conversation_downloaded" and "last_scraped_at" scrape_time := time.Now() for i, t := range(tweets) { - fmt.Printf("Checking tweet %d (%v)\n", t.ID, t.LastScrapedAt) if t.ID == id { // Index the slice because `tweets[i]` is a reference, whereas `t` is a copy tweets[i].LastScrapedAt = scrape_time tweets[i].IsConversationScraped = true - fmt.Printf("Updating tweet %d: %v\n", tweets[i].ID, tweets[i].LastScrapedAt.Unix()) } } users = append(users, _users...)