Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Showing all output in the console VS code

I am using console.log in my javascript program in VS code to output to the console a lot of values. When I print a few values to the console using console.log, I am able to see every value in the console window as normal. But when there are a lot of them, the values seem to get cut off. Is there some sort of option in VS code that allows me to print everything to the console without it being cut off at some limit?

like image 342
Obama nation Avatar asked Jul 21 '20 11:07

Obama nation


Video Answer


1 Answers

Go to File>Preferences>Setting and search for the Scrollback setting and increase the value to get the number of lines of output you want.

This worked for me.

like image 76
Aexki Avatar answered Sep 21 '22 21:09

Aexki