Commit cb4321af23bded36cc76a4088cd515b5045aeee8
remove logging
Dominic Tarr committed on 11/8/2017, 1:03:21 AMParent: a56669393bf54c55122d12bfbd085f7cf7ff2413
Files changed
index.js | changed |
index.js | |||
---|---|---|---|
@@ -66,16 +66,14 @@ | |||
66 | 66 … | var cb = args[1] | |
67 | 67 … | if(id.raw) fn(id.id, cb) | |
68 | 68 … | else | |
69 | 69 … | fn(id, function (err, value) { | |
70 | - console.log("GOT", id, err, value) | ||
71 | 70 … | if(!err) cb(null, value) | |
72 | 71 … | else get(id, cb) | |
73 | 72 … | }) | |
74 | 73 … | }) | |
75 | 74 … | ||
76 | 75 … | sbot.on('rpc:connect', function (rpc, isClient) { | |
77 | - console.log('CONNECT...', id.substring(0, 5), rpc.id.substring(0, 5)) | ||
78 | 76 … | if(isClient) { | |
79 | 77 … | var stream = gq.createStream(rpc.id) | |
80 | 78 … | pull(stream, rpc.ooo.stream(function () {}), stream) | |
81 | 79 … | } | |
@@ -89,4 +87,6 @@ | |||
89 | 87 … | get: get | |
90 | 88 … | } | |
91 | 89 … | } | |
92 | 90 … | ||
91 … | + | ||
92 … | + |
Built with git-ssb-web