We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f2490c4 commit 1284fd1Copy full SHA for 1284fd1
src/internal/events.ts
@@ -26,7 +26,7 @@ export const pollForEvents = async (
26
27
payload = (await endpointExec(request)).payload;
28
29
- log("Bin execution complete", { bin, payload });
+ log("Bin execution complete", { bin });
30
} else if (endpoint) {
31
log("Endpoint specified, proxying request", { endpoint });
32
@@ -39,7 +39,7 @@ export const pollForEvents = async (
39
40
payload = (await endpointProxy(request)).payload;
41
42
- log("Proxy request complete", { endpoint, payload });
+ log("Proxy request complete", { endpoint });
43
} else {
44
throw new Error(
45
`
0 commit comments