1
0
mirror of https://git.sr.ht/~cadence/bibliogram synced 2024-11-22 08:07:30 +00:00

Remove debugging info from getIdentifier

This commit is contained in:
Cadence Ember 2020-07-31 03:01:54 +12:00
parent 4fdf44c4ca
commit f0a28d485f
No known key found for this signature in database
GPG Key ID: 128B99B1B74A6412

View File

@ -33,8 +33,6 @@ if (constants.quota.enabled) {
}
function getIdentifier(address) {
let d = Date.now()
const result = (() => {
try {
if (address == undefined) return "missing"
else if (checker(address)) return "proxy"
@ -45,9 +43,6 @@ function getIdentifier(address) {
console.error(e)
throw e
}
})()
console.log(`identified ${address} -> ${result} in ${Date.now()-d} ms`)
return result
}
module.exports.getIdentifier = getIdentifier