The old _debug_ is gone.

The root logging level is WARNING. This means you only see warnings, no info and no debug. To set the level to INFO add the following line to local_conf.py:

logging.getLogger().setLevel(logging.INFO)

This is more or less identical with the old DEBUG = 1. To see the whole debug (old DEBUG = 2) use the level logging.DEBUG. :

logging.getLogger().setLevel(logging.DEBUG)

Some parts of freevo use a different logger than the root logger. Examples are all subtypes like video and childapp s special case for running programs. If you only want some childapp debug add the following line :

logging.getLogger('childapp').setLevel(logging.INFO)

Some parts still have to be ported, help is needed

Troubleshooting (last edited 2008-03-21 15:22:42 by localhost)