diff --git a/database/src/typeorm/connection.ts b/database/src/typeorm/connection.ts index 6e8bd5c09..e3434c3aa 100644 --- a/database/src/typeorm/connection.ts +++ b/database/src/typeorm/connection.ts @@ -16,7 +16,10 @@ const connection = async (): Promise => { entities, synchronize: false, }) - } catch (error) {} + } catch (error) { + // eslint-disable-next-line no-console + console.log(error) + } return con }