diff --git a/prisma/deploy.ts b/prisma/deploy.ts index a6645f4..cbc2ca6 100644 --- a/prisma/deploy.ts +++ b/prisma/deploy.ts @@ -18,8 +18,8 @@ const tryWakingUpDatabase = async () => { try { await new PrismaClient({ datasources: { db: { url: DATABASE_PUBLIC_URL } } }).$connect(); - } catch (error_) { - console.log(error_); + } catch { + /* empty */ } };