Skip to content

Commit

Permalink
cleanup
Browse files Browse the repository at this point in the history
  • Loading branch information
grahamlangford committed Apr 30, 2024
1 parent de68cab commit 01d1e9c
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion src/errors/errorHelpers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -144,7 +144,6 @@ export function selectSpecificError<
*/
export function getRootCause(error: unknown): unknown {
while (isErrorObject(error) && error.cause) {
console.log("get root cause", error);
error = error.cause;
}

Expand Down

0 comments on commit 01d1e9c

Please sign in to comment.