mirror of
https://github.com/microsoft/vscode.git
synced 2025-12-27 13:40:25 +00:00
Clean up logged messages
This commit is contained in:
@@ -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;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user