remove console logs

This commit is contained in:
MathieuG-P
2022-10-09 20:52:58 +02:00
parent 573da853d7
commit 417e538df6
2 changed files with 1 additions and 3 deletions
-1
View File
@@ -10,7 +10,6 @@ ipcMain.on('bs-launch.launch', (event, request: IpcRequest<LauchOption>) => {
const utilsService = UtilsService.getInstance();
launcherService.launch(request.args).then(res => {
console.log("BEAT SABER LANCER");
utilsService.ipcSend(request.responceChannel, {success: true, data: res});
}).catch((err: BsmException) => {
utilsService.ipcSend(request.responceChannel, {success: false, error: err});
@@ -199,11 +199,10 @@ export class BsModsManagerService {
if(!hasIPADir || !hasIPAExe){ return; }
await this.executeBSIPA(version, ["--revert", "-n"]).then(res => console.log("BSIPA", res));
await this.executeBSIPA(version, ["--revert", "-n"]);
const promises = download.hashMd5.map(files => {
const file = files.file.replaceAll("IPA/", "").replaceAll("Data", "Beat Saber_Data");
console.log("DELETE", file);
return this.utilsService.unlinkIfExist(path.join(verionPath, file));
})