diff options
author | Ev Bogue <ev@evbogue.com> | 2019-11-22 10:49:39 -0600 |
---|---|---|
committer | Ev Bogue <ev@evbogue.com> | 2019-11-22 10:49:39 -0600 |
commit | 6f73dcee4fbf3935a411c7a5434779ff1935d342 (patch) | |
tree | 7849009ac0b005672ea762c7d584aed6c088785d | |
parent | 2a2f53df4c4e007ec4864c31df806c9b653c063d (diff) |
remove console logs
-rw-r--r-- | gossip.js | 3 |
1 files changed, 0 insertions, 3 deletions
@@ -46,10 +46,8 @@ function sync (subs, keys) { } ws.onmessage = function (message) { var req = JSON.parse(message.data) - console.log(req) unbox(req.box, req.requester, keys).then(unboxed => { var unboxedreq = JSON.parse(nacl.util.encodeUTF8(unboxed)) - console.log(unboxedreq) if (unboxedreq.seq === 0) { var stringedfeed = JSON.stringify(srclog) box(stringedfeed, serverpub, keys).then(boxed => { @@ -58,7 +56,6 @@ function sync (subs, keys) { box: boxed } console.log('Sending entire log of ' + msg.author + ' to ' + serverpub) - console.log(obj) ws.send(JSON.stringify(obj)) }) } |