summaryrefslogtreecommitdiffstats
path: root/Lib/logging/handlers.py
Commit message (Collapse)AuthorAgeFilesLines
* Brought excluded code into the scope of a try block in SysLogHandler.emit().Vinay Sajip2014-11-011-11/+11
|
* Issue #22646: Accept list as well as tuple to support initialisation via ↵Vinay Sajip2014-10-171-2/+2
| | | | dictConfig().
* Issue #21742: Set stream to None after closing.Vinay Sajip2014-06-141-0/+1
|
* Issue #21608: Updated HTTPHandler documentation.Vinay Sajip2014-05-301-1/+1
|
* Issue #18941: Respected delay when doing rollover.Vinay Sajip2013-09-061-9/+4
|
* Issue #18940: Handled low-volume logging when delay is True.Vinay Sajip2013-09-061-2/+6
|
* Issue #17981: Closed socket on error in SysLogHandler.Vinay Sajip2013-05-161-0/+1
|
* Issue #17795: Reverted backwards-incompatible change in SysLogHandler with ↵Vinay Sajip2013-04-221-6/+29
| | | | Unix domain sockets.
* Issue #16244: Remove file mode overrides.Vinay Sajip2012-10-161-2/+0
|
* Issue #16168: Use specified socket type for domain sockets in SysLogHandler.Vinay Sajip2012-10-091-8/+2
|
* Issue #15179: Closed socket on connection failure. Thanks to Kazutaka Morita ↵Vinay Sajip2012-06-251-1/+5
| | | | for the patch.
* Issue #14632: Updated WatchedFileHandler to deal with race condition. Thanks ↵Vinay Sajip2012-04-241-19/+29
| | | | to John Mulligan for the problem report and patch.
* Issue #14452: remove BOM insertion code.Vinay Sajip2012-04-161-2/+0
|
* Closes #14436: Convert msg + args to string before pickling.Vinay Sajip2012-03-291-2/+9
|
* Closes #14314: backported fix.Vinay Sajip2012-03-231-1/+2
|
* Closes #14267: Corrected computation of rollover filename.Vinay Sajip2012-03-131-6/+15
|
* Fix added for recent changes in non-threading environments.Vinay Sajip2012-02-231-5/+20
|
* Updated comments.Vinay Sajip2012-02-231-3/+2
|
* logging: Added locking in flush() and close() handler methods. Thanks to ↵Vinay Sajip2012-02-231-13/+18
| | | | Fayaz Yusuf Khan for the suggestion.
* Issue #10949: Improved robustness of rotating file handlers.Vinay Sajip2011-01-211-0/+2
|
* Issue #7077: Backported fix from py3k.Vinay Sajip2010-09-031-7/+6
|
* Issue #9512: Made comment more informative.Vinay Sajip2010-08-221-1/+6
|
* Merged revisions 83901 via svnmerge fromSenthil Kumaran2010-08-091-1/+1
| | | | | | | | | | svn+ssh://pythondev@svn.python.org/python/branches/py3k ........ r83901 | senthil.kumaran | 2010-08-10 01:31:35 +0530 (Tue, 10 Aug 2010) | 3 lines Fix Issue7007 - Use percent-encoded consistently instead of URL Encoded variations. Changes in Modules. ........
* logging: Added LOG_FTP for SysLogHandler and updated documentation.Vinay Sajip2010-03-241-1/+3
|
* Issue #8117: logging: Improved algorithm for computing initial rollover time.Vinay Sajip2010-03-121-2/+6
|
* logging: Removed some more 1.5.2 support code.Vinay Sajip2010-02-071-24/+3
|
* logging: Improved support for SMTP over TLS.Vinay Sajip2009-12-061-5/+8
|
* logging: Added optional 'secure' parameter to SMTPHandler.Vinay Sajip2009-12-061-2/+10
|
* Issue #7077: logging: SysLogHandler now treats Unicode as per RFC 5424.Vinay Sajip2009-10-211-0/+10
|
* Issue #7086: Added TCP support to SysLogHandler and tidied up some ↵Vinay Sajip2009-10-101-22/+27
| | | | anachronisms in the code.
* Issue #5262: Improved fix.Vinay Sajip2009-06-111-11/+11
|
* Issue #5262: Fixed bug in next roll over time computation in ↵Vinay Sajip2009-06-111-5/+10
| | | | TimedRotatingFileHandler.
* Issue 5013: Fixed bug in FileHandler when delay was set - added fix for ↵Vinay Sajip2009-01-201-9/+9
| | | | RotatingFileHandler and changed header comment slightly.
* Issue 4336: Let users of HTTPConnection.endheaders() submit a message body ↵Kristján Valur Jónsson2009-01-091-3/+1
| | | | to the function if required.
* Fixed: #2914 (RFE for UTC support in TimedRotatingFileHandler) and #2929 ↵Vinay Sajip2008-05-201-12/+20
| | | | (wrong filename used to delete old log files).
* Fix: #2315, #2316, #2317: TimedRotatingFileHandler - changed logic to better ↵Vinay Sajip2008-04-021-10/+62
| | | | handle daylight savings time, deletion of old log files, and fixed a bug in calculating rollover when no logging occurs for a longer interval than the rollover period.
* Patch #2167 from calvin: Remove unused importsChristian Heimes2008-02-231-1/+1
|
* Added optional delay argument to FileHandler and subclasses.Vinay Sajip2008-01-241-11/+14
|
* Fix: #1836: Off-by-one bug in TimedRotatingFileHandler rollover calculation. ↵Vinay Sajip2008-01-211-2/+5
| | | | Patch thanks to Kathryn M. Kowalski.
* Bug #1321: Fixed logic error in TimedRotatingFileHandler.__init__()Vinay Sajip2007-10-241-5/+5
|
* Updated docstring for SysLogHandler (#1720726).Vinay Sajip2007-05-251-1/+2
|
* Added new optional credentials argument to SMTPHandler.__init__, and ↵Vinay Sajip2007-05-011-7/+12
| | | | smtp.login() is now called in SMTPHandler.emit() if credentials are specified.
* Added optional timeout to SocketHandler.makeSocket (SF #1695948)Vinay Sajip2007-04-091-1/+3
|
* Use new email module names (#1637162, #1637159, #1637157).Georg Brandl2007-01-221-1/+1
|
* Updated rotating file handlers to use _open().Vinay Sajip2007-01-161-10/+6
|
* Added WatchedFileHandler (based on SF patch #1598415)Vinay Sajip2007-01-141-0/+49
|
* Bare except clause removed from SMTPHandler.emit(). Now, only ImportError is ↵Vinay Sajip2007-01-081-2/+2
| | | | | | | trapped. Bare except clause removed from SocketHandler.createSocket(). Now, only socket.error is trapped. (SF #411881)
* Patch by Jeremy Katz (SF #1609407)Vinay Sajip2006-12-111-2/+2
|
* Addressed SF#1524081 by using a dictionary to map level names to syslog ↵Vinay Sajip2006-07-201-3/+25
| | | | priority names, rather than a string.lower().
* Removed buggy exception handling in doRollover of rotating file handlers. ↵Vinay Sajip2006-06-271-12/+2
| | | | Exceptions now propagate to caller.