We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5d7fd30 commit 4ce4dbbCopy full SHA for 4ce4dbb
packages/protocol/src/node/server.ts
@@ -140,7 +140,7 @@ export class Server {
140
try {
141
const proxy = this.getProxy(proxyId, method);
142
if (typeof proxy.instance[method] !== "function") {
143
- throw new Error(`"${method}" is not a function`);
+ throw new Error(`"${method}" is not a function on proxy ${proxyId}`);
144
}
145
146
response = proxy.instance[method](...args);
0 commit comments