File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -52,7 +52,7 @@ export class TraceServer {
5252 cancellable : false
5353 } ,
5454 async progress => {
55- progress . report ( { message : 'Stopping ...' } ) ;
55+ progress . report ( { message : 'stopping ...' } ) ;
5656 const message = prefix + ' stopping' + suffix + ' Resetting.' ;
5757 treeKill ( pid , error => {
5858 if ( error ) {
@@ -141,7 +141,7 @@ export class TraceServer {
141141 cancellable : false
142142 } ,
143143 async progress => {
144- progress . report ( { message : 'Starting up...' } ) ;
144+ progress . report ( { message : 'starting up...' } ) ;
145145 let timeout = false ;
146146 const timeoutId = setTimeout ( ( ) => ( timeout = true ) , millis ) ;
147147
@@ -191,9 +191,9 @@ export class TraceServer {
191191
192192 private showStatus ( started : boolean ) {
193193 if ( started ) {
194- vscode . window . showInformationMessage ( prefix + ': Started .' ) ;
194+ vscode . window . showInformationMessage ( prefix + ' started .' ) ;
195195 } else {
196- vscode . window . showInformationMessage ( prefix + ': Stopped .' ) ;
196+ vscode . window . showInformationMessage ( prefix + ' stopped .' ) ;
197197 }
198198 this . setStatusIfAvailable ( started ) ;
199199 }
You can’t perform that action at this time.
0 commit comments