We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7190951 commit cd9554bCopy full SHA for cd9554b
playground/.vscode/settings.json
@@ -1,3 +1,8 @@
1
{
2
- "debugger-for-console.ellipsis": true
+ "debugger-for-console.outputNewline": false,
3
+ "debugger-for-console.onlyVariable": "enable",
4
+ "debugger-for-console.wrappers": {
5
+ "javascript": "console.error('%c {VALUE}', 'color: red', {VALUE})"
6
+ // "javascript": "console.warn('Custom Wrapper', {VALUE})"
7
+ }
8
}
playground/javascript.js
@@ -22,7 +22,8 @@ const obj = {
22
23
function fnScope() {
24
25
- const test = 'TEST';
+ const say = 'hello,' + 'world!';
26
+ console.debug('🚀jav…:25/(say):\n', say)
27
28
obj.value?.[0]?.test()
29
0 commit comments