Skip to content

Commit a715379

Browse files
committed
Remove console.log
1 parent b0de6e0 commit a715379

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "worker-functions",
3-
"version": "0.2.0",
3+
"version": "0.3.0",
44
"description": "Full-stack Typesafety with Cloudflare Workers 👷",
55
"main": "generated-client/index.ts",
66
"scripts": {

templates/worker.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@ export default {
2727
const url = new URL(request.url);
2828
const functionName = decodeURIComponent(url.pathname.split('/')[1]);
2929
let input: any[] = [];
30-
console.log(functions[functionName], functionName);
3130
try {
3231
input = (await request.json()) as unknown[];
3332
} catch {}

0 commit comments

Comments
 (0)