Remove debug and change version to release

This commit is contained in:
OleSTEEP 2024-03-09 01:16:17 +03:00
parent f9e80edb2a
commit 9b5d4caf05
9 changed files with 1 additions and 43 deletions

View file

@ -241,13 +241,10 @@ require.libs.fs = {
for (const listingFile of listing) {
if (listingFile.toLowerCase() == basename.toLowerCase()) {
const alt = require.libs.path.join(dirname, listingFile);
console.log(`tried to access ${path}: not found, found alternative: ${alt}`) //Remove in release
return alt;
}
}
console.log(`tried to access ${path}: not found, alternative name was not found too!`) //Remove in release
return null;
},