remove console logs

This commit is contained in:
MathieuG-P
2022-10-19 22:50:46 +02:00
parent 0dfdba702d
commit fbf2fff618
2 changed files with 1 additions and 3 deletions
+1 -1
View File
@@ -62,4 +62,4 @@ app.on('window-all-closed', () => {
app.whenReady().then(() => {
createWindow();
}).catch(console.log);
}).catch(log.error);
-2
View File
@@ -38,8 +38,6 @@ export class BSLauncherService{
const cwd = await this.localVersionService.getVersionPath(launchOptions.version);
const exePath = path.join(cwd, BS_EXECUTABLE);
console.log(exePath);
if(!this.utilsService.pathExist(exePath)){ return "EXE_NOT_FINDED"; }
const launchMods = [launchOptions.oculus && "-vrmode oculus", launchOptions.desktop && "fpfc", launchOptions.debug && "--verbose"];