! This repo is a fork of Turbo Console Log from Chakroun Anas. It will be removed if / once my PRs have been merged into the main repo.
This extension make debugging much easier by automating the operation of writing meaningful log message.
I) Insert meaningful log message automatically
Two steps:
-
Selecting the variable which is the subject of the debugging
-
Pressing ctrl + alt + L
The log message will be inserted in the next line relative to the selected variable like this:
console.log("SelectedVariableEnclosingClassName -> SelectedVariableEnclosingFunctionName -> SelectedVariable", SelectedVariable)
Multiple cursor support:
Properties:
-
turboConsoleLog.wrapLogMessage (boolean): Whether to wrap the log message or not.
-
turboConsoleLog.logMessagePrefix (string): The prefix of the log message, default one is TCL.
-
turboConsoleLog.addSemicolonInTheEnd (boolean): Whether to put a semicolon in the end of the log message or not.
-
turboConsoleLog.insertEnclosingClass (boolean): Whether to insert or not the enclosing class of the selected variable in the log message.
-
turboConsoleLog.insertEnclosingFunction (boolean): Whether to insert or not the enclosing function of the selected variable in the log message.
-
turboConsoleLog.quote (enum): Double quotes (""), single quotes ('') or backtick(``).
A wrapped log message :
II) Comment all log messages, inserted by the extension, from the current document
All it takes to comment all log messages, inserted by the extension, from the current document is to press alt + shift + c
III) Uncomment all log messages, inserted by the extension, from the current document
All it takes to uncomment all log messages, inserted by the extension, from the current document is to press alt + shift + u
IV) Delete all log messages, inserted by the extension, from the current document
All it takes to delete all log messages, inserted by the extension, from the current document is to press alt + shift + d
V) Add styling options for each part of the variable's path definition.
Properties:
- turboConsoleLog.styleArray (string[], max 3): a list of CSS stylings, to be applied to prefix, class/function and variable name.
Warning:
The extension rely on the log message prefix in order to detect the generated log messages, missing up the prefix will result on the failure of the detection and hence the failure of commenting, uncommenting and deleting the log messages.
Initial release of Turbo Console Log
- New feature: The possibility of wrapping the log message is added
- New feature: Comment all log messages inserted by the extension
- New feature: Uncomment all log messages inserted by the extension
- When requested, only the log messages inserted by the extension will be commented, uncommented or deleted
- Multiple cursor support
- New feature: Add styling options
MIT © Chakroun Anas Edited by Tuur Lievens
Enjoy!