From 88945c724b4bcb393a7696d2e0b745d5eee050e3 Mon Sep 17 00:00:00 2001 From: Anmol Gangwar Date: Mon, 26 Aug 2024 15:16:05 +0530 Subject: [PATCH] ci: testing --- src/app.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/src/app.ts b/src/app.ts index 414afea..94126f6 100644 --- a/src/app.ts +++ b/src/app.ts @@ -118,6 +118,7 @@ export class App { private initializeErrorHandler() { this.app.onError((err, c) => { const error = err as HTTPException + console.log(error) return c.json({ success: false, message: error.message }, error.status || 500) }) }