Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Eclipse stops console from clearing

Tags:

I'm having problems with Eclipse automatically clearing the console after doing Maven builds. This doesn't seem to happen all the time, but because of this I can't see the results. Does anybody know how to change this behavior?

like image 468
zimZille Avatar asked Nov 27 '12 08:11

zimZille


People also ask

How do I save my console log in Eclipse?

Go-to Eclipse Menu: Run -> Run Configuration. Go-to Common tab. Under Standard Input and Output: Select Output file checkbox, enter log file name and path where you want logs to be redirected. Apply changes and run your application.

How do you stop the console from running in Eclipse?

For newer versions of Eclipse, go to Preferences > Run/Debug > Console and uncheck "Show when program writes to standard out" and "Show when program writes to standard error".

How do I fix the console position in Eclipse?

Go to Window->Preferences->General->Appearences Change theme to Windows 7 Restart Eclipse Dock to bottom of screen and minimize. This worked for me, hope it helps someone else out there.

How do I set the console buffer size in Eclipse?

Under Window > Preferences , go to the Run/Debug > Console section, then you should see an option "Limit console output." You can uncheck this or change the number in the "Console buffer size (characters)" text box below.


1 Answers

Prevent the Eclipse console from clearing as follows:

  1. Select Window » Preferences to show the Preferences dialog
  2. Expand Run/debug
  3. Select Console
  4. Uncheck Limit Console output
  5. Click OK to accept the new preferences and close the dialog

enter image description here

like image 55
Anil kumar Avatar answered Nov 11 '22 04:11

Anil kumar