You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The node v8 debugger protocol truncates strings automatically to a (non configurable) 80 characters and appends a '... (length: 123)'.
Node debug tries to extend this rather small limit to 10000 by retrieving the string contents for long strings through 'evaluate'.
Verify that:
strings in the debugger are only truncated if they are longer than 10000.
the UI (hovers, variables view, repl) shows long strings correctly.
The text was updated successfully, but these errors were encountered:
Strings that are roughly 4,000 or more are being proportionally truncated when using console.log(string) in Linux. A string that is 4069 characters is being output with only 4047 characters. A string that is 9922 characters outputs only 9504 characters.
The node v8 debugger protocol truncates strings automatically to a (non configurable) 80 characters and appends a '... (length: 123)'.
Node debug tries to extend this rather small limit to 10000 by retrieving the string contents for long strings through 'evaluate'.
Verify that:
The text was updated successfully, but these errors were encountered: