On Sun, Jul 21, 2013 at 6:33 PM, Evan Ruff <[email protected]> wrote:
> it seems like this amount of logging might be unnecessary. Currently, I'm > using the ConsistentLogAndContinueErrorHandler, which had been pretty > good, but is too verbose for this sort of failure. > > Unfortunately, you may not like my answer on this. I love logging. One of the major reasons I like deploying on App Engine is that the logging services are well thought out compared to competitors. Verbosity isn't a problem with me; I inspect logs via Google BigQuery or another automated logs inspector, so I (almost) never deal with that problem. With that said, if the logging is too verbose for your needs you can change the logging level being set. ConsistentLogAndContinueErrorHandler accepts a logging level as an argument, so play around with the constants from java.util.logging.Level.[logging constant] until you find the logging setting you like. Here are the links to the appropriate docs: ConsistentLogAndContinueErrorHandler: https://developers.google.com/appengine/docs/java/javadoc/com/google/appengine/api/memcache/ConsistentLogAndContinueErrorHandler Logging Levels: http://docs.oracle.com/javase/1.4.2/docs/api/java/util/logging/Level.html ----------------- -Vinny P Technology & Media Advisor Chicago, IL App Engine Code Samples: http://www.learntogoogleit.com -- You received this message because you are subscribed to the Google Groups "Google App Engine" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at http://groups.google.com/group/google-appengine. For more options, visit https://groups.google.com/groups/opt_out.
