Lost System.out.println, Being bombarded with text.

      Is there an easy way to find where I put it? I used it for testing purposes and then immediately forgot where I put it. I'm using Eclipse by the way.

Does this happen to be your “Rednering” line?

The easiest way would a file search using the search feature of Eclipse.

Ctrl-F “println”

Ayyyyy lmao. Thanks ;D

Yes it was the “Rednering” Line hahahahahha

This is why I usually include the class and method in println diagnostics. A few extra keystrokes vs. time sink-hole trying to figure out WTF.

Just use this instead of System.out

https://docs.oracle.com/javase/7/docs/api/java/util/logging/Logger.html

It provides lots of useful information as to where the logging was generated from

An example of using it can be found here