On 21 Jul 2012, at 1:38 PM, Neil wrote: > I can confirm that I can't reproduce the behaviour using the same web2py code > locally with Rocket on windows. Also, I tried adding: > > logging = 'debug' > > and > > default_ logging = 'debug' > > to routes.py, and I couldn't get any logged info (on either platform). >
Try logging = 'warning' (there is no default_logging, I don't think, in this context). Seems the default threshold for logging is a little higher than I thought. This will log to the console, assuming that you're running in a mode where console logging works (it does running in the foreground with Rocket). If not, you'll need to configure logging.conf to send logging to a file. --

