How to write to the console in Google App Engine (JAVA)?

I am using eclipse and java sdk for the application. I found a link to the same question

here

and in stackoverflow

here .

But both for python.

Is there a way to do this in eclipse?

+3
source share
2 answers

Well java.lang.Systemthere is a whitelist, so it won’t java.lang.System.out.println(...)work?

+3
source

Try using the java.util.logging.Logger class . See the docs for more details.

+2
source

Source: https://habr.com/ru/post/1751883/


All Articles