Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Where to find the output of "system out" in Intellij IDE?

It seems that system.out will never be displayed in Intellij IDE, is that right? There's no output in Console and Logcat.

Thanks

like image 360
LiangWang Avatar asked May 15 '13 01:05

LiangWang


People also ask

Where can I see output in IntelliJ?

Run tool window The Run tool window displays output generated by your application. If you are running multiple applications, each one is displayed in a tab named after the run/debug configuration applied. If you re-run an application, the new output overwrites the contents of the tab.

How do I add system out Println to IntelliJ?

In IntelliJ IDEA, type sout and press the Enter or Tab button from your keyboard to generate System. out. println() automatically.

How do I get full console log in IntelliJ?

Preferences/Settings -> Editor -> General -> Console , check the box next to Override console cycle buffer size , set to a larger number than 1024 KB.


1 Answers

It is seen in the Run tab along with the command line to run the program:

enter image description here

like image 84
maba Avatar answered Sep 28 '22 08:09

maba