Skip to content

Commit 9f94072

Browse files
committed
fix: remove console.log
1 parent 33fe7a3 commit 9f94072

File tree

2 files changed

+0
-2
lines changed

2 files changed

+0
-2
lines changed

src/graphsync.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,6 @@ export class GraphSync extends EventEmitter {
114114
msg.rsp.forEach((resp) => this._handleResponse(resp));
115115
}
116116
if (msg.req) {
117-
console.log("received request", msg.req);
118117
msg.req.forEach((req) =>
119118
this._handleRequest(props.connection.remotePeer, req)
120119
);

src/push.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@ export async function push(path: string, init: PushInit): Promise<void> {
3737
bl.append(chunk);
3838
}
3939
const msg = dagCBOR.decode<TransferMessage>(bl.slice());
40-
console.log("received message", msg);
4140
if (msg.Response && msg.Response.XferID === id) {
4241
resolve(msg.Response);
4342
}

0 commit comments

Comments
 (0)