summaryrefslogtreecommitdiffstats
path: root/Lib/logging
Commit message (Expand)AuthorAgeFilesLines
* Reverted back to r67866.Vinay Sajip2010-01-281-4/+4
* Issue #7403: logging: Fixed possible race condition in lock creation.Vinay Sajip2009-11-271-4/+4
* Revert the following revisions, as they don't fix securityMartin v. Löwis2008-03-023-22/+19
* Bug #1321: Fixed logic error in TimedRotatingFileHandler.__init__()Vinay Sajip2007-10-241-5/+5
* Updated documentation for SysLogHandler (#1720726).Vinay Sajip2007-05-251-3/+4
* Minor fix for currentframe (SF #1652788).Vinay Sajip2007-02-171-3/+3
* Fixed bug in fileConfig where _handlerList was not being cleared. (SF #1632328)Vinay Sajip2007-01-111-0/+1
* Backported change in shutdown(); now takes an optional handler-list argument.Vinay Sajip2007-01-111-2/+2
* Patch by "cuppatea" (SF #1503765)Vinay Sajip2006-12-111-4/+5
* Patch by Jeremy Katz (SF #1609407)Vinay Sajip2006-12-111-2/+2
* Fix missing import of the types module in logging.config.Georg Brandl2006-09-061-1/+1
* Removed buggy exception handling in doRollover of rotating file handlers. Exc...Vinay Sajip2006-06-271-18/+6
* StreamHandler now checks explicitly for None before using sys.stderr as the s...Vinay Sajip2006-04-121-1/+1
* Catch situations where currentframe() returns None. See SF patch #1447410, th...Vinay Sajip2006-03-201-4/+9
* Exceptions raised during renaming in rotating file handlers are now passed to...Vinay Sajip2006-01-161-2/+12
* TimedRotatingFileHandler now calculates next rollover from previous rollover ...Vinay Sajip2006-01-161-1/+1
* Fixed bug in time-to-midnight calculation.Vinay Sajip2006-01-161-3/+6
* Fixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for repor...Vinay Sajip2005-11-091-1/+1
* Exception handling now raises KeyboardInterrupt and SystemExit rather than pa...Vinay Sajip2005-10-311-0/+12
* Exception handling now raises KeyboardInterrupt and SystemExit rather than pa...Vinay Sajip2005-10-311-0/+2
* One-off "No handlers..." error message only raised if raiseExceptions is set.Vinay Sajip2005-10-231-1/+1
* Don't use a string exception since it's deprecatedNeal Norwitz2005-10-211-1/+1
* Optimised Placeholders handling of child loggers by using a dict rather than ...Vinay Sajip2005-10-141-4/+8
* Added Host and Content-type headers to requests sent by HTTPHandler (suggeste...Vinay Sajip2005-10-111-1/+10
* Fixed bug where the logging message was wrongly being demoted from Unicode to...Vinay Sajip2005-10-071-6/+8
* Misc. backported changesVinay Sajip2005-09-162-6/+15
* Added optional encoding argument to File based handlers and improved error ha...Vinay Sajip2005-03-311-20/+41
* Minor changes to importsVinay Sajip2005-03-311-3/+8
* Misc. changesVinay Sajip2005-03-311-18/+42
* Fixed bug in handling of args in LogRecord.__init__.Vinay Sajip2004-10-211-1/+1
* Changed handling of args in LogRecord.__init__.Vinay Sajip2004-10-201-2/+17
* Changes made to maintain 1.5.2 compatibility.Vinay Sajip2004-10-031-6/+27
* Version number updated to 0.4.9.5Vinay Sajip2004-10-031-2/+2
* Added log() functionVinay Sajip2004-09-241-0/+8
* Added exception handling during handler initialization in fileConfig()Vinay Sajip2004-09-241-24/+27
* Added getLoggerClass()Vinay Sajip2004-09-221-12/+15
* Fixed bug in DatagramHandler.send()Vinay Sajip2004-08-241-0/+2
* Patch #791776: Replace SMTPHandler.date_time with email.Utils.formatdate.Martin v. Löwis2004-08-181-16/+2
* Updated Logger.log() docstring to clarify that lvl parameter should be an int...Vinay Sajip2004-08-041-1/+1
* Ignore exceptions which occur when closing files in shutdown()Vinay Sajip2004-07-291-2/+7
* Removed debugging print statements from TimedRotatingFileHandler, and sorted ...Vinay Sajip2004-07-121-3/+4
* Add exception handling for BaseRotatingFileHandler (SF #979252)Vinay Sajip2004-07-081-3/+6
* FileHandler now stores the basename as an absolute path (fix for SF #982049)Vinay Sajip2004-07-081-2/+4
* Whitespace normalization.Tim Peters2004-07-072-6/+6
* Refactored RotatingFileHandler to create a base class for rotating handlers....Vinay Sajip2004-07-031-11/+167
* Changed basicConfig() to add keyword arguments. Changes are backward-compatible.Vinay Sajip2004-07-031-10/+56
* Removed spurious import statementVinay Sajip2004-03-081-2/+0
* Minor documentation changesVinay Sajip2004-02-283-9/+11
* Added close() (which flushes) to BufferingHandler and tidied MemoryHandler.cl...Vinay Sajip2004-02-211-2/+10
* Handler close() functions call flush() [SF #901330]Vinay Sajip2004-02-211-3/+4