Remove extra log

This commit is contained in:
Ajay Ramachandran 2021-12-02 23:48:10 -05:00
parent 6f05b5b92d
commit bd3e38fe40

View file

@ -70,8 +70,6 @@ async function getAndSplit<T, U extends string>(fetchFromDB: (values: U[]) => Pr
newResults[keyGenerator(value)] ??= [];
}
console.log(newResults);
for (const key in newResults) {
redis.setAsync(key, JSON.stringify(newResults[key]));
}