[Lldb-commits] [lldb] bd62c9c - [lldb-vscode] remove deprecated trace option

Walter Erquinigo via lldb-commits lldb-commits at lists.llvm.org
Fri Feb 7 16:55:17 PST 2020


Author: Walter Erquinigo
Date: 2020-02-07T16:54:42-08:00
New Revision: bd62c9cecf34cc3cea52ad83b278cd7cb62812b4

URL: https://github.com/llvm/llvm-project/commit/bd62c9cecf34cc3cea52ad83b278cd7cb62812b4
DIFF: https://github.com/llvm/llvm-project/commit/bd62c9cecf34cc3cea52ad83b278cd7cb62812b4.diff

LOG: [lldb-vscode] remove deprecated trace option

Summary: This option is not used anymore and has been replaced by the env var LLDBVSCODE_LOG.

Reviewers: clayborg

Subscribers: lldb-commits

Tags: #lldb

Differential Revision: https://reviews.llvm.org/D74266

Added: 
    

Modified: 
    lldb/tools/lldb-vscode/package.json

Removed: 
    


################################################################################
diff  --git a/lldb/tools/lldb-vscode/package.json b/lldb/tools/lldb-vscode/package.json
index 847a219fbb59..1cec0e65463f 100644
--- a/lldb/tools/lldb-vscode/package.json
+++ b/lldb/tools/lldb-vscode/package.json
@@ -109,11 +109,6 @@
 								"description": "Detach from the program.",
 								"default": false
 							},
-							"trace": {
-								"type": "boolean",
-								"description": "Enable logging of the Debug Adapter Protocol.",
-								"default": true
-							},
 							"sourcePath": {
 								"type": "string",
 								"description": "Specify a source path to remap \"./\" to allow full paths to be used when setting breakpoints in binaries that have relative source paths."
@@ -167,11 +162,6 @@
 								"description": "If set to true, then wait for the process to launch by looking for a process with a basename that matches `program`. No process ID needs to be specified when using this flag.",
 								"default": true
 							},
-							"trace": {
-								"type": "boolean",
-								"description": "Enable logging of the Debug Adapter Protocol.",
-								"default": true
-							},
 							"sourcePath": {
 								"type": "string",
 								"description": "Specify a source path to remap \"./\" to allow full paths to be used when setting breakpoints in binaries that have relative source paths."


        


More information about the lldb-commits mailing list