Remove unecessary logging

This commit is contained in:
Cecylia Bocovich 2019-06-27 09:40:30 -04:00
parent 6f01a6bfc4
commit 651dca464f

View file

@ -58,7 +58,6 @@ class Snowflake
@pollBroker() @pollBroker()
@pollInterval = setInterval((=> @pollBroker()), @pollInterval = setInterval((=> @pollBroker()),
config.defaultBrokerPollInterval) config.defaultBrokerPollInterval)
log @pollInterval
# Regularly poll Broker for clients to serve until this snowflake is # Regularly poll Broker for clients to serve until this snowflake is
# serving at capacity, at which point stop polling. # serving at capacity, at which point stop polling.
@ -119,7 +118,6 @@ class Snowflake
cease: -> cease: ->
while @proxyPairs.length > 0 while @proxyPairs.length > 0
@proxyPairs.pop().close() @proxyPairs.pop().close()
log @pollInterval
clearInterval(@pollInterval) clearInterval(@pollInterval)
disable: -> disable: ->