diff options
-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)) }) } |