Package edPDB :: Module log
[hide private]
[frames] | no frames]

Module log

source code

Configure logging for edPDB analysis.

Import this module if logging is desired in application code.

Functions [hide private]
 
create(logfile='edPDB.log')
Create a top level logger.
source code
 
clear_handlers(logger)
clean out handlers in the library top level logger
source code
Function Details [hide private]

create(logfile='edPDB.log')

source code 
Create a top level logger.

- The file logger logs everything (including DEBUG).
- The console logger only logs INFO and above.

Logging to a file and the console.

See http://docs.python.org/library/logging.html?#logging-to-multiple-destinations

The top level logger of the library is named 'edPDB'.  Note that
we are configuring this logger with console output. If the root
logger also does this then we will get two output lines to the
console. We'll live with this because this is a simple
convenience library...

clear_handlers(logger)

source code 

clean out handlers in the library top level logger

(only important for reload/debug cycles...)