Sublime.log_commands (True) for vscode

In SublimeText, you can open the console and enter sublime.log_commands(True) to force sublime to log every command that the editor starts. This helps a lot to understand what is happening and to figure out which commands you should follow.

I just want to know if there is something similar in VSCode?

+6
source share
1 answer

In update 1.20.1 of the available logs:

https://code.visualstudio.com/updates/v1_20#_output-panel

Extension logging:

https://code.visualstudio.com/updates/v1_20#_extension-logging

Commands (see log commands):

https://code.visualstudio.com/updates/v1_20#_new-commands

For example, tap Ctrl + P :

then > and print:

Developer: Open Logs Folder

Developer: Show Logs...

... and other teams.

+1
source

Source: https://habr.com/ru/post/1012861/


All Articles