Commit 4bbd918 1 parent 76efe2c commit 4bbd918 Copy full SHA for 4bbd918
File tree 1 file changed +3
-3
lines changed
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -192,10 +192,10 @@ export class Spl2ClientServer {
192
192
] ;
193
193
this . serverProcess = child_process . spawn ( this . javaPath , javaArgs ) ;
194
194
if ( ! this . serverProcess || ! this . serverProcess . pid ) {
195
- reject ( `Launching server with ${ this . javaPath } ${ javaArgs . join ( ' ' ) } failed.` ) ;
195
+ reject ( `Launching language server v ${ this . lspVersion } with ${ this . javaPath } ${ javaArgs . join ( ' ' ) } failed.` ) ;
196
196
return ;
197
197
} else {
198
- console . log ( `SPL2 Language Server launched with pid: ${ this . serverProcess . pid } and listening on port: ${ this . lspPort } ` ) ;
198
+ console . log ( `SPL2 Language Server v ${ this . lspVersion } launched with pid: ${ this . serverProcess . pid } and listening on port: ${ this . lspPort } ` ) ;
199
199
}
200
200
this . serverProcess . stderr . on ( 'data' , stderr => {
201
201
console . warn ( `[SPL2 Server]: ${ stderr } ` ) ;
@@ -218,7 +218,7 @@ export class Spl2ClientServer {
218
218
console . log ( `[SPL2 Server]: ${ stdout } ` ) ;
219
219
const lspLog : LSPLog = JSON . parse ( stdout ) ;
220
220
if ( lspLog . message . includes ( 'started listening on port' ) ) {
221
- console . log ( ' SPL2 Server is up, starting client...' ) ;
221
+ console . log ( ` SPL2 Server v ${ this . lspVersion } is up, starting client...` ) ;
222
222
// Ready for client
223
223
this . socket = new Socket ( ) ;
224
224
You can’t perform that action at this time.
0 commit comments