Skip to content

Commit fc10279

Browse files
authored
Improve log messages for Python configuration checks
1 parent 79261d8 commit fc10279

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

lib/find-python.js

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -86,12 +86,10 @@ class PythonFinder {
8686
{
8787
before: () => {
8888
if (!this.configPython) {
89-
this.addLog(
90-
'--python= is not set from command line')
89+
this.addLog('--python was not set on the command line')
9190
return SKIP
9291
}
93-
this.addLog('checking Python explicitly set from command line')
94-
this.addLog(`- "--python=${this.configPython}"`)
92+
this.addLog(`--python=${this.configPython} was set on the command line`)
9593
},
9694
check: () => this.checkCommand(this.configPython)
9795
},

0 commit comments

Comments
 (0)