mirror of
https://github.com/overleaf/overleaf.git
synced 2024-11-21 20:47:08 -05:00
Clean up, don't allocate an extra date
This commit is contained in:
parent
5ea83947dd
commit
f397678589
1 changed files with 1 additions and 3 deletions
|
@ -17,11 +17,9 @@ module.exports = (obj, methodName, key, logger) ->
|
||||||
)
|
)
|
||||||
|
|
||||||
timer = new metrics.Timer(key)
|
timer = new metrics.Timer(key)
|
||||||
start = new Date()
|
|
||||||
|
|
||||||
realMethod.call this, firstArgs..., (callbackArgs...) ->
|
realMethod.call this, firstArgs..., (callbackArgs...) ->
|
||||||
timer.done()
|
elapsedTime = timer.done()
|
||||||
elapsedTime = new Date() - start
|
|
||||||
if logger?
|
if logger?
|
||||||
logger.log {key, elapsedTime}, "[Metrics] timed async method call"
|
logger.log {key, elapsedTime}, "[Metrics] timed async method call"
|
||||||
callback.apply this, callbackArgs
|
callback.apply this, callbackArgs
|
||||||
|
|
Loading…
Reference in a new issue