On Aug 29, 2010, at 9:46 AM, mart wrote:
>
> So, we still notice the same error "No handlers could be found for
> logger "web2py"" and the I am brought back to the terminal cursor.
There may be two problems here.
One is that the "no handlers" message may be normal, but shouldn't result in
termination. So there may be a separate 2.7 issue that's causing you to
terminate that has nothing to do with the message.
Try running this from the python command line:
>>> import logging
>>> l = logging.getLogger('foobar')
>>> l.warning('bar')
No handlers could be found for logger "foobar"
>>>
This is 2.6.4 on OS X. We get the message, but no termination. How about 2.7?