I deployed an Java application on GAE and now I'm finding the way to view application log on GAE.
I read this guide: Reading and Writing Application Logs
but it doesn't work. I want to view my application log on Stackdriver Logging on Google Cloud Platform screen like below:
Does anyone configure to show application log on GAE. Could you suggest me a solution ?
My configuration:
- appengine-web.xml
src\main\webapp\WEB-INF\appengine-web.xml
- logging.properties
- Write log code using:
I'm using
private static final java.util.logging.Logger logger = java.util.logging.Logger.getLogger(CategoryResource.class.getName());