From f7556e51cd515ad97eb8b3ead6796f64672d8c77 Mon Sep 17 00:00:00 2001 From: Christian Paul <christianp@matrix.org> Date: Fri, 8 Jan 2021 14:00:23 +0100 Subject: [PATCH] Remove debugging output --- src/db/roomstore.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/db/roomstore.ts b/src/db/roomstore.ts index 4a90555..158a96a 100644 --- a/src/db/roomstore.ts +++ b/src/db/roomstore.ts @@ -106,8 +106,6 @@ export class DbRoomStore { public async countEntries() { const row = (await this.db.Get("SELECT COUNT(*) AS count FROM room_entries WHERE matrix_id IS NOT NULL AND remote_id IS NOT NULL")) || {}; - console.warn('abc', JSON.stringify(row), typeof row.count); - if (typeof row.count !== "number") { log.error("Failed to count room entries"); throw Error("Failed to count room entries"); -- GitLab