while using the appengine sdk i can’t view the Output of my System.out.println statements how can i view them they are like envaluable debugging tool for me .
while using the appengine sdk i can’t view the Output of my System.out.println statements
Share
I am using java.util.logging for my debug messages, and those do show up in the Log Viewer on the admin pages.
System.out and System.err also get redirected as log messages, but one thing to note is that you have to set an appropriate log level. The default is warnings-only, I think, which may filter out your messages. System.out is INFO, System.err is WARN.
You can adjust those in the logging.properties file.
Check out the docs for more, including how to download the logs.