diff --git a/graph/subscriptions/index.js b/graph/subscriptions/index.js index e4ccfef04..4803e309f 100644 --- a/graph/subscriptions/index.js +++ b/graph/subscriptions/index.js @@ -85,7 +85,7 @@ const onConnect = async (connectionParams, connection) => { */ const batchedUserRefresher = new DataLoader( userIDs => { - console.log(`OPERATION: refreshing ${userIDs.length} users.`); + debug(`OPERATION: refreshing ${userIDs.length} users.`); return User.find({ id: { $in: userIDs } }).then( singleJoinBy(userIDs, 'id') ); diff --git a/package.json b/package.json index 992d9f89d..406524517 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "talk", - "version": "4.6.2", + "version": "4.6.3", "description": "A better commenting experience from Mozilla, The New York Times, and the Washington Post. https://coralproject.net", "main": "app.js", "private": true,