From 6f1391aead163781f70305be68f4a7a85e7a0e4e Mon Sep 17 00:00:00 2001 From: Dragory <2606411+Dragory@users.noreply.github.com> Date: Tue, 2 Jun 2020 00:47:22 +0300 Subject: [PATCH] Remove debug log --- backend/src/data/cleanup/usernames.ts | 4 ---- 1 file changed, 4 deletions(-) diff --git a/backend/src/data/cleanup/usernames.ts b/backend/src/data/cleanup/usernames.ts index 3e385b25..71afcfbc 100644 --- a/backend/src/data/cleanup/usernames.ts +++ b/backend/src/data/cleanup/usernames.ts @@ -29,10 +29,6 @@ export async function cleanupUsernames(): Promise { ); if (rows.length > 0) { - console.log( - "ids", - rows.map(r => r.id), - ); await usernameHistoryRepository.delete({ id: In(rows.map(r => r.id)), });