File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 8585 * --sd-code-undefined
8686 * --sd-code-function
8787 * --sd-code-symbol
88+ * --sd-code-error
8889 * --sd-sb-width
8990 * --sd-sb-height
9091 * --sd-sb-track-color
132133 return '#}F#' + ` [function ${value.name}]`;
133134 }
134135 if (value instanceof Error ) {
135- return ' #}E#' + value .message ;
136+ return ' #}E#' + ` ${ value .name } : ${ value . message || value . cause || ' uknown error message ' } ` ;
136137 }
137138 return value;
138139 },
176177 match = match .slice (5 , - 1 );
177178 } else if (match .startsWith (' "#}E#' )) {
178179 cls = ' error' ;
179- match = ' Error: ' + match .slice (5 , - 1 );
180+ match = match .slice (5 , - 1 );
180181 }
181182 }
182183 } else if (/ true| false/ .test (match)) {
447448 .super - debug pre :: - webkit - scrollbar {
448449 width: var (-- sd- sb- width, var (-- sd- vscode- sb- width, 1 .25rem ));
449450 height: var (-- sd- sb- height, var (-- sd- vscode- sb- height, 1 .25rem ));
450- opacity: 0.5 ;
451451 }
452452
453453 .super - debug pre :: - webkit - scrollbar - track {
You can’t perform that action at this time.
0 commit comments