3
0
Fork 0
mirror of https://github.com/ZeppelinBot/Zeppelin.git synced 2025-03-16 14:11:50 +00:00

Remove debug log

This commit is contained in:
Dragory 2020-06-02 00:47:22 +03:00
parent de71520747
commit 6f1391aead
No known key found for this signature in database
GPG key ID: 5F387BA66DF8AAC1

View file

@ -29,10 +29,6 @@ export async function cleanupUsernames(): Promise<number> {
); );
if (rows.length > 0) { if (rows.length > 0) {
console.log(
"ids",
rows.map(r => r.id),
);
await usernameHistoryRepository.delete({ await usernameHistoryRepository.delete({
id: In(rows.map(r => r.id)), id: In(rows.map(r => r.id)),
}); });