follower added the comment:
Thanks for pointing out that link. It's good to know the information is
documented somewhere.
However, given that <http://docs.python.org/2/library/logging.html> is
described as "the API reference" and seems to be the canonical logging libra
New submission from follower:
The logging module documentation
<http://docs.python.org/3.4/library/logging.html> makes reference to the levels
DEBUG, INFO etc (e.g. in
<http://docs.python.org/3.4/library/logging.html#logging.Logger.setLevel>) but
AFAICT these constants are not d
follower added the comment:
I don't think it would be unreasonable to add the old name back in temporarily
and use whichever parameter is supplied--this change has obviously broken code
in the process.
But for future situations I think changes like this shouldn't happen
without a d
New submission from follower :
The following change broke pre-existing code that used "strm" as the parameter
name (as documented
http://docs.python.org/release/2.6.6/library/logging.html#streamhandler):
http://hg.python.org/cpython/diff/7391436d8a74/Lib/logging/__init__.py
The