Don't crash when route path is a regex

This commit is contained in:
James Allen 2014-04-30 09:42:20 +01:00
parent f8dec76464
commit 0c0548ea85

View file

@ -9,7 +9,7 @@ module.exports.logger = (req, res, next) ->
res.end = () ->
end.apply(this, arguments)
responseTime = new Date() - startTime
routePath = req.route.path.replace(/\//g, '-').slice(1)
routePath = req.route.path.toString().replace(/\//g, '-').slice(1)
processName = if settings.internal.web.name? then "web-#{settings.internal.web.name}" else "web"
key = "#{os.hostname()}.#{processName}.#{routePath}".toLowerCase().trim()