Monday, November 10, 2014

Google App Engine Pitfalls 2.0

Logging - add this:

 private static final Logger log = Logger.getLogger(GreetingServiceImpl.class.getName());  



...and this...for some reason...

 log.setLevel(Level.INFO);  



...and of course.

 log.info("The query returned " + pq.countEntities() + " entries.");  

No comments: