diff options
author | Ev Bogue <ev@evbogue.com> | 2020-01-19 09:22:14 -0600 |
---|---|---|
committer | Ev Bogue <ev@evbogue.com> | 2020-01-19 09:22:14 -0600 |
commit | 7a5291fd24326b799db92fc4f15c49111ab7c172 (patch) | |
tree | 181f42a4f1c9c99332349d35860872eecaaabb1f | |
parent | 970777008147f611bef649ac1d682c8f9e3a44fa (diff) |
comment out console logs
-rw-r--r-- | gossip.js | 6 | ||||
-rw-r--r-- | server.js | 2 |
2 files changed, 4 insertions, 4 deletions
@@ -59,16 +59,16 @@ function processreq (req, pubkey, connection, keys) { if (msg.seq >= latestmsg.seq) { latest.parentNode.removeChild(latest) clearInterval(timer) - console.log('we are caught up, deleting latest div') + //console.log('we are caught up, deleting latest div') } if (src != req.latest) { clearInterval(timer) - console.log('we navigated away') + //console.log('we navigated away') } }) }) }) - console.log('checking to see if we have caught up') + //console.log('checking to see if we have caught up') }, 5000) } } @@ -150,7 +150,7 @@ bog.keys().then(key => { requester: key.publicKey, box: boxed } - console.log('sending latest ' + unboxedreq.author) + //console.log('sending latest ' + unboxedreq.author) ws.send(JSON.stringify(obj)) }) } |