diff --git a/backend-pg/src/lib/knex/index.ts b/backend-pg/src/lib/knex/index.ts index 0a47c7161..515089e65 100644 --- a/backend-pg/src/lib/knex/index.ts +++ b/backend-pg/src/lib/knex/index.ts @@ -65,7 +65,6 @@ export const ormify = ( const res = await (tx || db)(tableName).where(filter).first("*"); return res; } catch (error) { - console.log("I HAVE REACHEd HEREEE===>", tableName) throw new DatabaseError({ error, name: "Find one" }); } }, @@ -85,7 +84,6 @@ export const ormify = ( const res = await query; return res; } catch (error) { - console.log("I HAVE REACHEd HEREEE===>", tableName) throw new DatabaseError({ error, name: "Find one" }); } },