summaryrefslogtreecommitdiffstats
path: root/Lib/logging/handlers.py
Commit message (Collapse)AuthorAgeFilesLines
* remove obsolete hasattr() check for socket.sendallGiampaolo Rodola'2012-10-261-9/+1
|
* Closes #16244: Merged change from 3.3.Vinay Sajip2012-10-161-2/+0
|\
| * Issue #16244: Merged change from 3.2.Vinay Sajip2012-10-161-2/+0
| |\
| | * Issue #16244: Remove file mode overrides.Vinay Sajip2012-10-161-2/+0
| | |
* | | logging's SocketHandler: get rid of some legacy code and use the newer ↵Giampaolo Rodola'2012-10-151-9/+1
| | | | | | | | | | | | socket.create_connection() utility function
* | | Closes #16168: Merged SysLogHandler update from 3.3.Vinay Sajip2012-10-091-8/+2
|\ \ \ | |/ /
| * | Issue #16168: Merged SysLogHandler update from 3.2.Vinay Sajip2012-10-091-8/+2
| |\ \ | | |/
| | * Issue #16168: Use specified socket type for domain sockets in SysLogHandler.Vinay Sajip2012-10-091-8/+2
| | |
* | | Issue #16141: replaced old-style exception handling code in logging with the ↵Vinay Sajip2012-10-091-21/+7
|/ / | | | | | | modern idiom.
* | Closes #15179: Merged fix from 3.2.Vinay Sajip2012-06-251-1/+5
|\ \ | |/
| * 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/+30
|\ \ | |/ | | | | to John Mulligan for the problem report and patch.
| * Issue #14632: Updated WatchedFileHandler to deal with race condition. Thanks ↵Vinay Sajip2012-04-241-19/+30
| | | | | | | | to John Mulligan for the problem report and patch.
* | Issue #14622: Increased default timeout for SMTPHandler.Vinay Sajip2012-04-221-1/+1
| |
* | Closes #14452: remove BOM insertion code.Vinay Sajip2012-04-161-1/+1
|\ \ | |/
| * Closes #14452: remove BOM insertion code.Vinay Sajip2012-04-161-2/+0
| |
* | Closes #14436: merged fix from 3.2.Vinay Sajip2012-03-291-5/+10
|\ \ | |/
| * Closes #14436: Convert msg + args to string before pickling.Vinay Sajip2012-03-291-5/+10
| |
| * Closes #14314: backported fix.Vinay Sajip2012-03-231-1/+2
| |
* | Fixes #14314: Improved SMTP timeout handling.Vinay Sajip2012-03-151-2/+5
| |
* | Closes #14267: Merged fix from 3.2.Vinay Sajip2012-03-131-6/+15
|\ \ | |/
| * Closes #14267: Corrected computation of rollover filename.Vinay Sajip2012-03-131-6/+15
| |
* | Merged fix added for recent changes in non-threading environments.Vinay Sajip2012-02-231-5/+20
|\ \ | |/
| * Fix added for recent changes in non-threading environments.Vinay Sajip2012-02-231-5/+20
| |
* | Merged logging flush/close changes from 3.2.Vinay Sajip2012-02-231-17/+21
|\ \ | |/
| * logging: Added locking in flush() and close() handler methods. Thanks to ↵Vinay Sajip2012-02-231-18/+22
| | | | | | | | Fayaz Yusuf Khan for the suggestion.
* | Refactored logging rotating handlers for improved flexibility.Vinay Sajip2012-01-041-14/+56
| |
* | logging: replace codecs.open with builtins.open, remove '_encoded' sort, add ↵Florent Xicluna2011-11-071-10/+2
| | | | | | | | some tests.
* | Closes #12419: Added ident to SysLogHandler.Vinay Sajip2011-06-271-0/+3
| |
* | Merged fix for issue #12168 from 3.2.Vinay Sajip2011-06-091-1/+5
|\ \ | |/
| * Issue #12168: SysLogHandler now allows NUL termination to be controlled ↵Vinay Sajip2011-06-091-1/+5
| | | | | | | | using a new 'append_nul' attribute on the handler.
* | Closed resource leak in SysLogHandler.Vinay Sajip2011-05-071-2/+1
| |
* | Changed where socket close is called on connection failure.Vinay Sajip2011-05-071-5/+6
| |
* | Close socket on connection failure.Vinay Sajip2011-05-071-0/+3
| |
* | Improved coverage and fixed bug in HTTPHandler with POST requests.Vinay Sajip2011-05-051-2/+4
| |
* | (Merge 3.2) logging: don't define QueueListener if Python has no thread supportVictor Stinner2011-05-021-112/+116
|\ \ | |/
| * logging: don't define QueueListener if Python has no thread supportVictor Stinner2011-05-021-102/+106
| |
* | Updated usage of boolean values.Vinay Sajip2011-04-301-7/+7
| |
* | Improved test_logging coverage.Vinay Sajip2011-04-281-2/+2
| |
* | test_logging coverage improvements.Vinay Sajip2011-04-271-2/+2
| |
* | More test_logging coverage improvements.Vinay Sajip2011-04-261-9/+9
| |
* | Issue #11852: Merge fix from 3.2.Vinay Sajip2011-04-151-0/+2
|\ \ | |/
| * Issue #11852: Add missing imports and update tests.Vinay Sajip2011-04-151-0/+2
| |
* | Improved QueueListener implementation - queue sentinel addition made extensible.Vinay Sajip2011-02-251-1/+11
|/
* Issue #10949: Improved robustness of rotating file handlers.Vinay Sajip2011-01-211-0/+2
|
* logging: added QueueListener and documentation.Vinay Sajip2010-09-231-3/+107
|
* logging: Added QueueHandler.prepare and updated documentation.Vinay Sajip2010-09-221-12/+27
|
* Added some methods to LoggerAdapter, and updated documentation.Vinay Sajip2010-09-211-0/+2
|
* logging: enhanced HTTPHandlerVinay Sajip2010-09-131-4/+14
|
* logging: Added QueueHandler.Vinay Sajip2010-09-081-0/+52
|