Clean up logged messages

This commit is contained in:
Matt Bierner 2022-02-24 14:28:27 -08:00
parent 31218f7479
commit ee9c87ccca
No known key found for this signature in database
GPG key ID: 099C331567E11888

View file

@ -362,15 +362,15 @@ export default class TypeScriptServiceClient extends Disposable implements IType
private token: number = 0;
private startService(resendModels: boolean = false): ServerState.State {
this.info(`Starting TS Server `);
this.info(`Starting TS Server`);
if (this.isDisposed) {
this.info(`Not starting server. Disposed `);
this.info(`Not starting server: disposed`);
return ServerState.None;
}
if (this.hasServerFatallyCrashedTooManyTimes) {
this.info(`Not starting server. Too many crashes.`);
this.info(`Not starting server: too many crashes`);
return ServerState.None;
}