-
Notifications
You must be signed in to change notification settings - Fork 763
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
extension: replace src/goLogging with vscode LogOutputChannel API
goLogging was used for extension's verbose/debug logging and debug session's client-side logging ("Go Debug") output channel. vscode's LogOutputChannel API provides log level control consistent across all VS Code components. More importantly, this allows users to inspect verbose/debug level logging messages from the Go output channel easily, instead of relying on the Developer's debug console (which is not guaranteed to be accessible from non-desktop editor integration products). Convert the "Go Debug" output channel to vscode LogOutputChannel. This allows us to control the logging level separate from the shared go.logging.level configuration. In fact, 'go.logging.level' setting is no longer necessary. Mark it deprecated. Change-Id: I4180eb1ce8afee63863d741b3501f0624aa42433 Reviewed-on: https://go-review.googlesource.com/c/vscode-go/+/559739 TryBot-Result: kokoro <[email protected]> Reviewed-by: Suzy Mueller <[email protected]> Auto-Submit: Hyang-Ah Hana Kim <[email protected]> Commit-Queue: Hyang-Ah Hana Kim <[email protected]>
- Loading branch information
Showing
11 changed files
with
67 additions
and
231 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.