remove console.time's

This commit is contained in:
joshuaboud 2022-05-16 14:38:16 -03:00
parent 700271c279
commit e54b028e34
No known key found for this signature in database
GPG Key ID: 17EFB59E2A8BF50E

View File

@ -229,7 +229,6 @@ export default {
}
const getEntries = async () => {
console.time('getEntries');
processingHandler.start();
try {
const cwd = props.path;
@ -287,7 +286,6 @@ export default {
return Promise.all(procs).then(() => {
emitStats();
sortEntries();
console.timeEnd('getEntries');
}).finally(() => processingHandler.stop());
} catch (error) {
entries.value = [];