Package Modeling :: Module logging
[show private | hide private]
[frames | no frames]

Module Modeling.logging

Module logging

A central module where all logging methods used in the framework are declared.

trace, debug, info, warn, error, fatal -- These methods are used within
the framework to indicate its activity. Apart during development or debugging tasks of the core, they normally should not be activated. Activating them usually implies a great loss of performance.
db_trace, db_debug, db_info, db_warn, db_error, db_fatal -- These methods
are dedicated to the logging of all actions performed against a concrete database connection. All but db_error and db_fatal are not activated by default. To activate them, set the environment variable ENABLE_DATABASE_LOGGING to any non-empty string.

When activated, these methods print their message into sys.stderr

CVS information

$Id: logging.py,v 1.8 2004/07/20 06:21:37 sbigaret Exp $

Function Summary
  db_debug(msg, severity)
  db_error(msg)
  db_fatal(msg)
  db_info(msg, severity)
  db_log(msg, severity)
  db_trace(msg, severity)
  db_warn(msg, severity)
  debug(msg, severity)
  error(msg, severity)
  fatal(msg, severity)
  info(msg, severity)
  log(msg, severity)
  log_stderr(msg)
  no_log(msg, severity)
  trace(msg, severity)
  warn(msg, severity)

Generated by Epydoc 2.1 on Sat Mar 4 13:36:26 2006 http://epydoc.sf.net