Remove debug logging from getClosestMatch function

This commit is contained in:
kwaroran
2024-12-09 01:08:30 +09:00
parent 73e98646f2
commit 01389e3e27

View File

@@ -455,7 +455,6 @@ function getClosestMatch(name:string, assetPaths:{[key:string]:{path:string, ext
closestDist = dist
}
}
console.table({closest, closestDist, time: performance.now() - perf, len:Object.keys(assetPaths).length})
return assetPaths[closest]
}