Skip to content
jonstout edited this page May 11, 2012 · 5 revisions

#Debugging

Logging

By default logging is set to show info level messages and greater.

Log to Console

"dev" is used as a keyword to log to command line.

python main.py -l dev

Log to File

Anything other than "dev" passed to the --log argument will be used as the file where logs are written to.

python main.py -l file.log

Verbose Mode

Use -v to show debug level messages.

Clone this wiki locally