Re: [Django] #18993: Default django logging to StreamHandler (when DEBUG=True)

2012-09-29 Thread Django
#18993: Default django logging to StreamHandler (when DEBUG=True)
-+-
 Reporter:  claudep  |Owner:  nobody
 Type:  New feature  |   Status:  closed
Component:  Core (Other) |  Version:  master
 Severity:  Normal   |   Resolution:  fixed
 Keywords:   | Triage Stage:  Ready for
Has patch:  1|  checkin
  Needs tests:  0|  Needs documentation:  0
Easy pickings:  0|  Patch needs improvement:  0
 |UI/UX:  0
-+-
Changes (by Claude Paroz <claude@…>):

 * status:  new => closed
 * resolution:   => fixed


Comment:

 In [changeset:"f0f327bbfe1caae6d11fbe20a3b5b96eed1704cf"]:
 {{{
 #!CommitTicketReference repository=""
 revision="f0f327bbfe1caae6d11fbe20a3b5b96eed1704cf"
 Fixed #18993 -- 'django' logger logs to console when DEBUG=True

 Thanks Preston Holmes for the review.
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/18993#comment:12>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #18993: Default django logging to StreamHandler (when DEBUG=True)

2012-09-29 Thread Django
#18993: Default django logging to StreamHandler (when DEBUG=True)
-+-
 Reporter:  claudep  |Owner:  nobody
 Type:  New feature  |   Status:  new
Component:  Core (Other) |  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:   | Triage Stage:  Ready for
Has patch:  1|  checkin
  Needs tests:  0|  Needs documentation:  0
Easy pickings:  0|  Patch needs improvement:  0
 |UI/UX:  0
-+-

Comment (by Claude Paroz <claude@…>):

 In [changeset:"a014ddfef2f606471f25c756d97b3b50fcbd9e91"]:
 {{{
 #!CommitTicketReference repository=""
 revision="a014ddfef2f606471f25c756d97b3b50fcbd9e91"
 Combined Django DEFAULT_LOGGING with user LOGGING config

 Refs #18993.
 }}}

-- 
Ticket URL: <https://code.djangoproject.com/ticket/18993#comment:11>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #18993: Default django logging to StreamHandler (when DEBUG=True)

2012-09-27 Thread Django
#18993: Default django logging to StreamHandler (when DEBUG=True)
-+-
 Reporter:  claudep  |Owner:  nobody
 Type:  New feature  |   Status:  new
Component:  Core (Other) |  Version:  master
 Severity:  Normal   |   Resolution:
 Keywords:   | Triage Stage:  Ready for
Has patch:  1|  checkin
  Needs tests:  0|  Needs documentation:  0
Easy pickings:  0|  Patch needs improvement:  0
 |UI/UX:  0
-+-
Changes (by ptone):

 * stage:  Unreviewed => Ready for checkin


Comment:

 This looks good!

-- 
Ticket URL: <https://code.djangoproject.com/ticket/18993#comment:10>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #18993: Default django logging to StreamHandler (when DEBUG=True)

2012-09-26 Thread Django
#18993: Default django logging to StreamHandler (when DEBUG=True)
--+--
 Reporter:  claudep   |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Unreviewed
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+--
Changes (by claudep):

 * needs_docs:  1 => 0


Comment:

 The latest 2 commits of this Github branch have a proposed
 implementation:[[BR]]
 https://github.com/claudep/django/commits/18993

-- 
Ticket URL: <https://code.djangoproject.com/ticket/18993#comment:9>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #18993: Default django logging to StreamHandler (when DEBUG=True)

2012-09-24 Thread Django
#18993: Default django logging to StreamHandler (when DEBUG=True)
--+--
 Reporter:  claudep   |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Unreviewed
Has patch:  1 |  Needs documentation:  1
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+--

Comment (by ptone):

 This looks like a solid approach, and is cleaner than my idea on IRC of
 just using .update() on the global settings with the user settings version
 of the config (which would be another way of merging the two).

 I think this happens as early as we are likely to get it to happen in
 Django, so the following point is minor.  Perhaps a note in the docs that
 disable_existing_loggers is absolute, so that if its used to disable
 DJango's default logging, it will also disable any already loaded loggers
 from other libraries.

 FWIW I do agree the default logging config should live outside of the
 global settings

-- 
Ticket URL: <https://code.djangoproject.com/ticket/18993#comment:8>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #18993: Default django logging to StreamHandler (when DEBUG=True)

2012-09-24 Thread Django
#18993: Default django logging to StreamHandler (when DEBUG=True)
--+--
 Reporter:  claudep   |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Unreviewed
Has patch:  1 |  Needs documentation:  1
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+--

Comment (by claudep):

 After some thinking, I think there is a small flaw in the current Django
 logging config system. The LOGGING config in global_settings.py is
 overriden by any custom settings LOGGING. When we update LOGGING in
 global_settings, any upgraded project cannot take advantage of newer
 features in the LOGGING config.

 My proposal would be:
 * Add DEFAULT_LOGGING in global_settings.py (with current LOGGING as
 content). This is *not* supposed to be overriden by project's settings.py
 (we can even imagine put it somewhere else, django.utils.log comes to
 mind). By default, global_settings.py LOGGING would be empty. We can still
 let the current content in project template LOGGING.
 * When configuring LOGGING (`django.conf.__init__.py`), first feed
 DEFAULT_LOGGING to the config function, then, if LOGGING is not empty,
 feed LOGGING to the config system.

 Here are the possible scenarios:
 * If the user has set `disable_existing_loggers` to True in his project's
 LOGGING, nothing has changed for him. He's still in complete control of
 logging in his project.
 * If the user has no LOGGING in his settings, the situation is unchanged,
 Django default logging is configured.
 * If the user has set `disable_existing_loggers` to False in LOGGING
 (which is currently the default in the project template), then Django
 default logging is configured, and the user custom LOGGING is *added* to
 the Django default configuration.

 This latest point is where we really gain from the current situation. We
 don't have to fiddle any more with the logging setup code.

 I may be missing something in my reasoning. Comments welcome!

-- 
Ticket URL: <https://code.djangoproject.com/ticket/18993#comment:7>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #18993: Default django logging to StreamHandler (when DEBUG=True)

2012-09-24 Thread Django
#18993: Default django logging to StreamHandler (when DEBUG=True)
--+--
 Reporter:  claudep   |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Unreviewed
Has patch:  1 |  Needs documentation:  1
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+--
Changes (by ptone):

 * needs_docs:  0 => 1


Comment:

 I still think that the logging config injection here:

 https://code.djangoproject.com/attachment/ticket/18993/18993-2.diff#L9

 is a bad idea.  While it does provide the more visible logging for
 migrated projects - any warnings that a developer really should know
 about, should be proper warnings.warn, not logging.warning. I think that
 if a user deletes the relevant boilerplate logging config bits from their
 settings.py, the logging behavior should not just magically reappear in
 their console - only going away if they explicitly set the handler to
 nullhandler.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/18993#comment:6>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #18993: Default django logging to StreamHandler (when DEBUG=True)

2012-09-20 Thread Django
#18993: Default django logging to StreamHandler (when DEBUG=True)
--+--
 Reporter:  claudep   |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Unreviewed
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+--

Comment (by claudep):

 This second patch is another possible approach to configure a default
 handler by default for the 'django' logger.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/18993#comment:5>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #18993: Default django logging to StreamHandler (when DEBUG=True)

2012-09-20 Thread Django
#18993: Default django logging to StreamHandler (when DEBUG=True)
--+--
 Reporter:  claudep   |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Unreviewed
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+--

Comment (by claudep):

 I understand your point of view. The problem I see with your approach is
 for legacy projects with an existing LOGGING setting. If we begin to use
 more logging inside Django, they will wonder why they don't get the nice
 warnings they should... until they realize they have not the good loggers
 configured.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/18993#comment:4>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #18993: Default django logging to StreamHandler (when DEBUG=True)

2012-09-20 Thread Django
#18993: Default django logging to StreamHandler (when DEBUG=True)
--+--
 Reporter:  claudep   |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Unreviewed
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+--

Comment (by ptone):

 Looking at this - it seems we should be leveraging the settings.LOGGING
 dictConfig more.

 The current module level code basically ensures that our 'django' logger
 exists in some minimum form.

 What we are talking about for both this, and the deprecation warnings, is
 some degree of implicit config requirement if something isn't explicitly
 specified.

 Meaning that even if we put the handler in the project template's
 settings.py dictConfig - deleting it does not remove the behavior, if you
 don't want it, you have to explicitly set it to a null handler.

 Generally this kind of "I didn't ask for this, why are you giving it to
 me" approach isn't desirable.

 I actually think the case for this behavior is stronger for deprecation.
 That is, if you want to silence warnings, you have to do it explicitly.
 However for the 'django' named handler, I think it is a harder sell.  I'd
 be more inclined to set the default dictConfig for new projects to use the
 streamhandler (with the DEBUG check) by default, and if the handler is
 removed from the project's settings.py file, just ensure that a null
 handler exists for the logger as is currently done.

-- 
Ticket URL: <https://code.djangoproject.com/ticket/18993#comment:3>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #18993: Default django logging to StreamHandler (when DEBUG=True)

2012-09-20 Thread Django
#18993: Default django logging to StreamHandler (when DEBUG=True)
--+--
 Reporter:  claudep   |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Unreviewed
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+--

Comment (by ptone):

 this would dovetail nicely with #18985

-- 
Ticket URL: <https://code.djangoproject.com/ticket/18993#comment:2>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




Re: [Django] #18993: Default django logging to StreamHandler (when DEBUG=True)

2012-09-20 Thread Django
#18993: Default django logging to StreamHandler (when DEBUG=True)
--+--
 Reporter:  claudep   |Owner:  nobody
 Type:  New feature   |   Status:  new
Component:  Core (Other)  |  Version:  master
 Severity:  Normal|   Resolution:
 Keywords:| Triage Stage:  Unreviewed
Has patch:  1 |  Needs documentation:  0
  Needs tests:  0 |  Patch needs improvement:  0
Easy pickings:  0 |UI/UX:  0
--+--
Changes (by claudep):

 * has_patch:  0 => 1


-- 
Ticket URL: <https://code.djangoproject.com/ticket/18993#comment:1>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.




[Django] #18993: Default django logging to StreamHandler (when DEBUG=True)

2012-09-20 Thread Django
#18993: Default django logging to StreamHandler (when DEBUG=True)
+
   Reporter:  claudep   |  Owner:  nobody
   Type:  New feature   | Status:  new
  Component:  Core (Other)  |Version:  master
   Severity:  Normal|   Keywords:
   Triage Stage:  Unreviewed|  Has patch:  0
Needs documentation:  0 |Needs tests:  0
Patch needs improvement:  0 |  Easy pickings:  0
  UI/UX:  0 |
+
 Currently, logging from Django code (except for django.request and
 django.db.backends) is going by default to the bin (`NullHandler`). I
 think this is discouraging usage of logging in Django, hence I'd like to
 replace the `NullHandler` by a `StreamHandler` redirecting to stdout when
 DEBUG is True. Working on a patch...

-- 
Ticket URL: <https://code.djangoproject.com/ticket/18993>
Django <https://code.djangoproject.com/>
The Web framework for perfectionists with deadlines.

-- 
You received this message because you are subscribed to the Google Groups 
"Django updates" group.
To post to this group, send email to django-updates@googlegroups.com.
To unsubscribe from this group, send email to 
django-updates+unsubscr...@googlegroups.com.
For more options, visit https://groups.google.com/groups/opt_out.