Archived
1
0

vscode-online -> vscode-remote

This commit is contained in:
Asher
2019-02-05 15:26:57 -06:00
parent 7021826e9d
commit 70ad911641
7 changed files with 14 additions and 14 deletions

View File

@ -331,7 +331,7 @@ const getChildLogger = (command: string, prefix: string = ""): Logger => {
let name: string;
if (command.includes("vscode-ipc") || command.includes("extensionHost")) {
name = "exthost";
} else if (command.includes("vscode-online")) {
} else if (command.includes("vscode-remote")) {
name = "shared";
} else {
const basename = command.split("/").pop()!;