Skip to content

Commit

Permalink
chore: added logs for debugging
Browse files Browse the repository at this point in the history
  • Loading branch information
raaymax committed Nov 1, 2024
1 parent 8862227 commit bc2635d
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions deno/server/inter/http/errors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export const errorHandler: Middleware = async (req, next) => {
if (e instanceof AppError) {
throw mapAppError(e);
}
console.log(e);
throw new InternalServerError(e);
}
};
Expand Down

0 comments on commit bc2635d

Please sign in to comment.