Skip to content

Commit 82260b5

Browse files
committedDec 3, 2024·
chore: remove temporary logging
1 parent c06a771 commit 82260b5

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed
 

‎package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"description": "An IPFS Bitswap Peer in Cloudflare Workers",
44
"version": "2.0.7",
55
"private": true,
6-
"license": "(Apache-2.0 AND MIT)",
6+
"license": "Apache-2.0 OR MIT",
77
"type": "module",
88
"scripts": {
99
"build": "esbuild --bundle src/worker.js --format=esm --sourcemap --minify --outfile=dist/worker.mjs",

‎src/worker.js

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@ import { getBlockstore } from './blocks.js'
77
import { version } from '../package.json'
88
import { Metrics } from './metrics.js'
99

10-
import debug from 'weald'
11-
debug.enable('*')
10+
// import debug from 'weald'
11+
// debug.enable('*')
1212

1313
/**
1414
* @typedef {object} Env

0 commit comments

Comments
 (0)
Please sign in to comment.