Changes between Version 3 and Version 4 of LoggingProposal


Ignore:
Timestamp:
Oct 10, 2009, 9:47:52 PM (15 years ago)
Author:
simon
Comment:

Added The Plan

Legend:

Unmodified
Added
Removed
Modified
  • LoggingProposal

    v3 v4  
    77Current code: http://github.com/simonw/django/tree/logging - tracked in ticket #12012
    88
     9== The Plan ==
     10
     111. DONE: Create a 'django' logger, hooked up to a NullHandler and with propagate=False so all logging is silent by default
     122. Start using loggers within Django itself (so far only the SQL logger is DONE, and that implementation could definitely be improved)
     133. DONE: Add a --loglevel command line switch to ./manage.py runserver to cause specified handlers to print to the console
     144. DONE: Add a mechanism for configuring loggers from Django's settings.py file using a LOGGING setting
     155. Figure out how users can get fine-grained control over their loggers by writing regular Python code
     16
     17Items marked DONE above aren't necessarily of production quality yet, but there's enough working code to see how they would look.
     18
    919== Logging from concurrent processes ==
    1020
Back to Top