Skip to content

Commit

Permalink
fix: add missing message in error log
Browse files Browse the repository at this point in the history
  • Loading branch information
fwouts committed Jun 20, 2024
1 parent 5e144f0 commit 5cd65fc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion core/src/router.ts
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export class ApiRouter {
response,
};
} catch (e: any) {
this.logger.error(`RPC ${path} failed`, e);
this.logger.error(`RPC ${path} failed: ${e}`);
return {
kind: "error",
message: e.message,
Expand Down

0 comments on commit 5cd65fc

Please sign in to comment.