We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bc5713d commit e1bc52bCopy full SHA for e1bc52b
src/server/routes/index.ts
@@ -21,6 +21,7 @@ export const createCaller = (services: Services) => {
21
wrapInternalError: (error: unknown) => {
22
if (error instanceof Value) return error;
23
if (error instanceof RpcError) return RpcError.value(error);
24
+ // tslint:disable-next-line:no-console
25
console.error(error);
26
return RpcError.valueFrom(error);
27
},
0 commit comments