remove console logs

This commit is contained in:
2024-01-22 12:53:59 +01:00
parent bf8a458b5f
commit dc88e9f2cc
5 changed files with 3 additions and 11 deletions

View File

@@ -70,7 +70,6 @@ function getGlobalConfig(osuPath) {
path: "",
get: async (key) => {
if (!configFileInfo.path) {
console.log("config file not loaded");
return "";
}
const fileStream = await fs.promises.readFile(
@@ -181,11 +180,6 @@ async function getFilesThatNeedUpdate(osuPath, releaseStreamFiles) {
if (
fileHashOnDisk.trim().toLowerCase() != fileHash.trim().toLowerCase()
) {
console.log({
fileOnDisk,
fileHashOnDisk,
fileHash,
});
updateFiles.push(updatePatch);
}
} else updateFiles.push(updatePatch);