Li Che
Li Che

Reputation: 737

How to display console output of Eclipse?

I use Java to input XML content. Currently it just displays the last part of the output, and the first part can not be seen.

How can I display to the console all output of Eclipse? Where can I set this?

Upvotes: 0

Views: 145

Answers (1)

Festus Tamakloe
Festus Tamakloe

Reputation: 11310

Unfortunately eclipse cannot display all your out(even logcat cannot do that). To get all your put displayed you need to implement a logger which can write and save all your output somewhere.

look at this tutorials to see how to do it http://www.tutorialspoint.com/log4j/log4j_sample_program.htm

Upvotes: 1

Related Questions