This commit is contained in:
Jeff Balogh 2009-12-15 21:30:33 -08:00
Родитель 0be3537f78
Коммит 688f263b1f
1 изменённых файлов: 56 добавлений и 0 удалений

56
docs/topics/logging.rst Normal file
Просмотреть файл

@ -0,0 +1,56 @@
.. _logging:
=======
Logging
=======
Logging is fun. We all want to be lumberjacks. My muscle-memory wants to put
``print`` statements everywhere, but it's better to use ``log.debug`` instead.
``print`` statements make mod_wsgi sad, and they're not much use in production.
Plus, ``django-debug-toolbar`` can hijack the logger and show all the log
statements generated during the last request. When ``DEBUG = True``, all logs
will be printed to the development console where you started the server. In
production, we're piping everything into ``syslog``.
Configuration
-------------
The root logger is set up from ``log_settings.py`` in the base of zamboni's
tree. It sets up sensible defaults, but you can twiddle with these settings:
``LOG_LEVEL``
This setting is required, and defaults to ``loggging.DEBUG``, which will let
just about anything pass through. To reconfigure, import logging in your
settings file and pick a different level::
import logging
LOG_LEVEL = logging.WARN
``LOG_FORMAT``
This string controls what gets printed out for each log message. See the
default in ``log_settings.py``. The complete list of formatting options is
available at http://docs.python.org/library/logging.html#formatter.
Using Loggers
-------------
The ``logging`` package uses global objects to make the same logging
configuration available to all code loaded in the interpreter. Loggers are
created in a pseudo-namespace structure, so app-level loggers can inherit
settings from a root logger. zamboni's root namespace is just ``"z"``, in the
interest of brevity. In the caching package, we create a logger that inherits
the configuration by naming it ``"z.caching"``::
import logging
log = logging.getLogger('z.caching')
log.debug("I'm in the caching package.")
Logs can be nested as much as you want. Maintaining log namespaces is useful
because we can turn up the logging output for a particular section of zamboni
without becoming overwhelmed with logging from all other parts.
Complete logging docs: http://docs.python.org/library/logging.html