changed nonceFunc skew logging to trace level

This commit is contained in:
Danny Coates 2014-08-08 13:14:40 -07:00
Родитель fc389bcbc1
Коммит 435ddbcc64
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -30,7 +30,7 @@ module.exports = function (path, url, Hapi) {
// keeping a nonce cache. Instead we use this as an opportunity
// to report on the clock skew values seen in the wild.
var skew = (Date.now() / 1000) - (+ts)
log.info({ op: 'server.nonceFunc', skew: skew })
log.trace({ op: 'server.nonceFunc', skew: skew })
return cb()
}
}