We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 61b323c commit ec4b6e4Copy full SHA for ec4b6e4
src/main/osinstaller/CxInstaller.ts
@@ -114,7 +114,7 @@ export class CxInstaller {
114
115
const url = await this.getDownloadURL();
116
if (!url) {
117
- console.error('No valid download URL available for this platform.');
+ console.log('No valid download URL available for this platform.');
118
return;
119
}
120
@@ -143,7 +143,7 @@ export class CxInstaller {
143
console.log(`Executable exists at: ${executablePath}`);
144
return true;
145
} catch (error) {
146
- console.error(`Executable does not exist at: ${executablePath}`);
+ console.log(`Executable does not exist at: ${executablePath}`);
147
return false;
148
149
0 commit comments