Skip to content

Commit

Permalink
fix console.error
Browse files Browse the repository at this point in the history
  • Loading branch information
BenAlvo1 committed Sep 18, 2024
1 parent 61b323c commit ec4b6e4
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/osinstaller/CxInstaller.ts
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,7 @@ export class CxInstaller {

const url = await this.getDownloadURL();
if (!url) {
console.error('No valid download URL available for this platform.');
console.log('No valid download URL available for this platform.');
return;
}

Expand Down Expand Up @@ -143,7 +143,7 @@ export class CxInstaller {
console.log(`Executable exists at: ${executablePath}`);
return true;
} catch (error) {
console.error(`Executable does not exist at: ${executablePath}`);
console.log(`Executable does not exist at: ${executablePath}`);
return false;
}
}
Expand Down

0 comments on commit ec4b6e4

Please sign in to comment.