Skip to content

Commit 6fff008

Browse files
committed
TraceServer: Realign the start/stop message format
Make them consistent with all the other shown messages, formatting wise. Signed-off-by: Marco Miller <marco.miller@ericsson.com>
1 parent a021f59 commit 6fff008

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

src/trace-server.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff 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
}

0 commit comments

Comments
 (0)