1. b0623d6 logging: Added LOG_FTP for SysLogHandler and updated documentation. by Vinay Sajip · 15 years ago
  2. 9098ee4 Issue #8117: logging: Improved algorithm for computing initial rollover time. by Vinay Sajip · 15 years ago
  3. 7ce5c83 logging: Removed some more 1.5.2 support code. by Vinay Sajip · 15 years ago
  4. bd1094a logging: Improved support for SMTP over TLS. by Vinay Sajip · 15 years ago
  5. 4830566 logging: Added optional 'secure' parameter to SMTPHandler. by Vinay Sajip · 15 years ago
  6. 5ac6528 Issue #7077: logging: SysLogHandler now treats Unicode as per RFC 5424. by Vinay Sajip · 16 years ago
  7. 1c77b7f Issue #7086: Added TCP support to SysLogHandler and tidied up some anachronisms in the code. by Vinay Sajip · 16 years ago
  8. 91290b5 Issue #5262: Improved fix. by Vinay Sajip · 16 years ago
  9. 83da034 Issue #5262: Fixed bug in next roll over time computation in TimedRotatingFileHandler. by Vinay Sajip · 16 years ago
  10. aecf36a Issue 5013: Fixed bug in FileHandler when delay was set - added fix for RotatingFileHandler and changed header comment slightly. by Vinay Sajip · 16 years ago
  11. 84040db Issue 4336: Let users of HTTPConnection.endheaders() submit a message body to the function if required. by Kristján Valur Jónsson · 16 years ago
  12. a12da73 Fixed: #2914 (RFE for UTC support in TimedRotatingFileHandler) and #2929 (wrong filename used to delete old log files). by Vinay Sajip · 17 years ago
  13. e5aefa0 Fix: #2315, #2316, #2317: TimedRotatingFileHandler - changed logic to better 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. by Vinay Sajip · 17 years ago
  14. c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
  15. 92aa2f8 Added optional delay argument to FileHandler and subclasses. by Vinay Sajip · 17 years ago
  16. ae747dc Fix: #1836: Off-by-one bug in TimedRotatingFileHandler rollover calculation. Patch thanks to Kathryn M. Kowalski. by Vinay Sajip · 17 years ago
  17. bababa3 Bug #1321: Fixed logic error in TimedRotatingFileHandler.__init__() by Vinay Sajip · 18 years ago
  18. 754a5fb Updated docstring for SysLogHandler (#1720726). by Vinay Sajip · 18 years ago
  19. 70c8e8b Added new optional credentials argument to SMTPHandler.__init__, and smtp.login() is now called in SMTPHandler.emit() if credentials are specified. by Vinay Sajip · 18 years ago
  20. aa7b16a Added optional timeout to SocketHandler.makeSocket (SF #1695948) by Vinay Sajip · 18 years ago
  21. 5a096e1 Use new email module names (#1637162, #1637159, #1637157). by Georg Brandl · 18 years ago
  22. b3d8a06 Updated rotating file handlers to use _open(). by Vinay Sajip · 18 years ago
  23. 73306b0 Added WatchedFileHandler (based on SF patch #1598415) by Vinay Sajip · 18 years ago
  24. c683a87 Bare except clause removed from SMTPHandler.emit(). Now, only ImportError is trapped. by Vinay Sajip · 18 years ago
  25. 5492e17 Patch by Jeremy Katz (SF #1609407) by Vinay Sajip · 18 years ago
  26. dc57936 Addressed SF#1524081 by using a dictionary to map level names to syslog priority names, rather than a string.lower(). by Vinay Sajip · 19 years ago
  27. 6dd59f1 Removed buggy exception handling in doRollover of rotating file handlers. Exceptions now propagate to caller. by Vinay Sajip · 19 years ago
  28. 4b4a63e Replaced my dumb way of calculating seconds to midnight with Tim Peters' much more sensible suggestion. What was I thinking ?!? by Vinay Sajip · 19 years ago
  29. 814fa0f Exceptions raised during renaming in rotating file handlers are now passed to handleError (except for SystemExit and KeyboardInterrupt, which are re-raised). by Vinay Sajip · 19 years ago
  30. e928977 Exceptions raised during renaming in rotating file handlers are now passed to handleError (except for SystemExit and KeyboardInterrupt, which are re-raised). by Vinay Sajip · 19 years ago
  31. d952041 TimedRotatingFileHandler now calculates next rollover from previous rollover rather than current time. by Vinay Sajip · 19 years ago
  32. 74a83e9 Fixed bug in time-to-midnight calculation. by Vinay Sajip · 19 years ago
  33. 8b6b53f Fixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for reporting it/supplying a patch) by Vinay Sajip · 20 years ago
  34. 245a5ab Exception handling now raises KeyboardInterrupt and SystemExit rather than passing to handleError by Vinay Sajip · 20 years ago
  35. 85c1909 Exception handling now raises KeyboardInterrupt and SystemExit rather than passing to handleError by Vinay Sajip · 20 years ago
  36. b793506 Added Host and Content-type headers to requests sent by HTTPHandler (suggested by Steven Vereecken) by Vinay Sajip · 20 years ago
  37. 4600f11 Added optional encoding argument to file handlers. by Vinay Sajip · 20 years ago
  38. a1974c1 Improved SysLogHandler error recovery (patch by Erik Forsberg) by Vinay Sajip · 20 years ago
  39. e7d4066 Changes made to maintain 1.5.2 compatibility. by Vinay Sajip · 21 years ago
  40. fb15417 Fixed bug in DatagramHandler.send() by Vinay Sajip · 21 years ago
  41. 318a12e Patch #791776: Replace SMTPHandler.date_time with email.Utils.formatdate. by Martin v. Löwis · 21 years ago
  42. 5e9e9e1 Removed debugging print statements from TimedRotatingFileHandler, and sorted list returned by glob.glob() (SF #987166) by Vinay Sajip · 21 years ago
  43. 3970c11 Add exception handling for BaseRotatingFileHandler (SF #979252) by Vinay Sajip · 21 years ago
  44. 4e0e1b6 Whitespace normalization. by Tim Peters · 21 years ago
  45. 17c52d8 Refactored RotatingFileHandler to create a base class for rotating handlers. Added TimedRotatingFileHandler. by Vinay Sajip · 21 years ago
  46. 4102478 Removed spurious import statement by Vinay Sajip · 21 years ago
  47. 3f74284 Minor documentation changes by Vinay Sajip · 21 years ago
  48. f42d95e Added close() (which flushes) to BufferingHandler and tidied MemoryHandler.close() [SF #901330] by Vinay Sajip · 21 years ago
  49. 48cfe38 Copyright year change. by Vinay Sajip · 21 years ago
  50. e21f606 SF bug #835457: Small typo in logging documentation by Raymond Hettinger · 22 years ago
  51. 6f3eaa6 SF patch #761519: Fixes for bugs 760703 and 757821 by Raymond Hettinger · 22 years ago
  52. f297bd1 SF patch #725904, Minor changes to logging from module author (Vinay Sajip) by Neal Norwitz · 22 years ago
  53. 6fa635d SF patch #687683, Patches to logging (updates from Vinay) by Neal Norwitz · 22 years ago
  54. f4cdb47 amk pointed out that syslog may use UDP or TCP sockets. by Neal Norwitz · 22 years ago
  55. d89c406 SF #642974, logging SysLogHandler proto type wrong by Neal Norwitz · 22 years ago
  56. 455ab77 Get rid of #! lines, references to usage as __main__, README.txt, and by Guido van Rossum · 23 years ago
  57. 57102f8 Adding Vinay Sajip's logging package. by Guido van Rossum · 23 years ago