[google-appengine] Re: logging level

2009-03-14 Thread Doug
Hi Adam, I have not tried this in GAE, but you should be able control the logging level (and a whole lot more) in all of your scripts via a single configuration file. You will have to add a line to all of your scripts that point to the file, but after that the logging level is controlled by

[google-appengine] Re: logging level

2009-03-14 Thread Bastian Hoyer
you can just do somthing like that in your main application file: def main(): logging.getLogger().setLevel(logging.DEBUG) run_wsgi_app(application) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Google

[google-appengine] Re: logging level

2009-03-14 Thread Ken Tidwell
I was curious about logging load, as well, so I ran a few small tests. It looks like it costs around 0.25 milliseconds per log call on the production server. Which is not free but is very cheap. But I also noticed that the development server takes a dive if you log more than around 500 times in