From 6515c33f50b6381be8b529a01936e51e4dc0b420 Mon Sep 17 00:00:00 2001 From: Thomas Lynch Date: Wed, 22 Dec 2021 18:11:18 +1100 Subject: [PATCH] change logging --- gulp/res/js/watchlist.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gulp/res/js/watchlist.js b/gulp/res/js/watchlist.js index 6b0c7bbc..7cf7016b 100644 --- a/gulp/res/js/watchlist.js +++ b/gulp/res/js/watchlist.js @@ -45,6 +45,7 @@ class ThreadWatcher { //refresh all the threads in the watchlist map refresh() { + console.log('refreshing watchlist') for (let t of this.watchListMap.entries()) { const [board, postId] = t[0].split('-'); const data = t[1]; @@ -207,7 +208,6 @@ class ThreadWatcher { //add a thread to the watchlist map add(board, postId, data) { -console.log(board, postId, data) const key = `${board}-${postId}`; if (this.watchListMap.has(key)) { //dont add duplicates