Skip to content

Commit ec4b6e4

Browse files
committed
fix console.error
1 parent 61b323c commit ec4b6e4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/main/osinstaller/CxInstaller.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ export class CxInstaller {
114114

115115
const url = await this.getDownloadURL();
116116
if (!url) {
117-
console.error('No valid download URL available for this platform.');
117+
console.log('No valid download URL available for this platform.');
118118
return;
119119
}
120120

@@ -143,7 +143,7 @@ export class CxInstaller {
143143
console.log(`Executable exists at: ${executablePath}`);
144144
return true;
145145
} catch (error) {
146-
console.error(`Executable does not exist at: ${executablePath}`);
146+
console.log(`Executable does not exist at: ${executablePath}`);
147147
return false;
148148
}
149149
}

0 commit comments

Comments
 (0)