programmer.py wrote:
Ok. I found my problem, or at least a fix.
It seems that the paste.translogger middleware was automagically being
used in previous versions of pylons. But 0.9.3 doesn't automagically
do this for you.
To fix this, I edited my middleware.py file ->
from paste.translogger import TransLogger
# in make_app
app = TransLogger(app)
TransLogger without any additional arguments simply logs to the
console, which works for me while hacking away in dev mode. Maybe the
template generator should be updated to generate the `correct'
TransLogger entry in the middleware.py file?
I have no such thing as a translogger in my middleware, but I'll sure
have a look at that. :)
Pedro Algarvio