increase profiling cutoff to 1s

This commit is contained in:
Brian Gough 2017-05-18 15:02:08 +01:00
parent b6efb051e1
commit e11f64f83a

View file

@ -5,7 +5,7 @@ deltaMs = (ta, tb) ->
return Math.floor(((ta[0]-tb[0])*1e9 + (ta[1]-tb[1]))*1e-6)
module.exports = class Profiler
LOG_CUTOFF_TIME: 100
LOG_CUTOFF_TIME: 1000
constructor: (@name, @args) ->
@t0 = @t = process.hrtime()