Skip to content

Commit

Permalink
error handling
Browse files Browse the repository at this point in the history
  • Loading branch information
sinamics committed Apr 8, 2023
1 parent 352edbf commit e5ed7e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/server/helpers/errorHandler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ export class APIError extends Error {
this.statusText = axiosError.response?.statusText;
this.cause = axiosError.cause;
// eslint-disable-next-line no-console
console.error(axiosError.cause);
console.error(axiosError);
}
}
}

0 comments on commit e5ed7e7

Please sign in to comment.