-
Notifications
You must be signed in to change notification settings - Fork 645
Replace vscode-debug-logger dep with LoggingSession from vscode-debugadapter #858
Comments
@roblourens We moved to using
Before: After: |
It also logs traffic to and from the debug adapter. If you don't want to see it, those messages are "Verbose", so you could use a higher log level for your own messages, then set the log level to exclude Verbose messages. Errors are red, warnings are yellow, everything else is the default color. If you really want to, you should be able to wrap your log messages in color escape codes (https://www.npmjs.com/package/color) and those should be applied to the console. |
Thanks @roblourens Pushed a change to update the
The previous option to have verbose logs logged to file but not shown in the debug console is deprecated as we havent seen that being used as much as showing the verbose logs in the debug console + file logging. @brycekahle, @segevfiner, |
Turns out the older But See 105de16#r31811317 (Thanks @segevfiner!) To get around this, I'll be logging things from the debug adapter using This is important to differentiate the logs when in the new "verbose" mode |
I should do this at some point, as the stuff from vscode-debug-logger has been moved into the official vscode-debugadapter lib.
The text was updated successfully, but these errors were encountered: