Skip to content

Commit

Permalink
Add more debug info to service fromProto
Browse files Browse the repository at this point in the history
  • Loading branch information
ryanberckmans committed Jul 16, 2024
1 parent 3e5c24e commit 55d5941
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/service/src/fromProto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,6 @@ export function transferVerificationRequestFromProto(pb: TransferVerificationReq
};
return [req, undefined];
} catch (e) {
return [undefined, Error(`${e}`)];
return [undefined, Error(`${e} req: ${pb.toJsonString()}`)];
}
}

0 comments on commit 55d5941

Please sign in to comment.