1. 1211edd Added a docstring by Vinay Sajip · 18 years ago
  2. 825b75a Bug #1627575: Added _open() method to FileHandler which can be used to reopen files. The FileHandler instance now saves the encoding (which can be None) in an attribute called "encoding". by Vinay Sajip · 18 years ago
  3. 2cd79f6 Bare except clause removed from LogRecord.__init__. Now, only ValueError, TypeError and AttributeError are trapped. by Vinay Sajip · 18 years ago
  4. c683a87 Bare except clause removed from SMTPHandler.emit(). Now, only ImportError is trapped. by Vinay Sajip · 18 years ago
  5. 66a1726 Patch by "cuppatea" (SF #1503765) by Vinay Sajip · 18 years ago
  6. 5492e17 Patch by Jeremy Katz (SF #1609407) by Vinay Sajip · 18 years ago
  7. ef7f3bf Change to improve speed of _fixupChildren by Vinay Sajip · 18 years ago
  8. 2c050af Modified LogRecord.__init__ to make the func parameter optional. (See SF #1569622). by Vinay Sajip · 18 years ago
  9. 4e93313 Fix missing import of the types module in logging.config. by Georg Brandl · 18 years ago
  10. f3e3042 Repair logging test spew caused by rev. 51206. by Georg Brandl · 18 years ago
  11. 0a7d1bb logging's atexit hook now runs even if the rest of the module has by Georg Brandl · 18 years ago
  12. dc57936 Addressed SF#1524081 by using a dictionary to map level names to syslog priority names, rather than a string.lower(). by Vinay Sajip · 18 years ago
  13. cea4bf0 Fixed bug in fileConfig() which failed to clear logging._handlerList by Vinay Sajip · 18 years ago
  14. 6dd59f1 Removed buggy exception handling in doRollover of rotating file handlers. Exceptions now propagate to caller. by Vinay Sajip · 18 years ago
  15. 9e9c252 Changed status from "beta" to "production"; since logging has been part of the stdlib since 2.3, it should be safe to make this assertion ;-) by Vinay Sajip · 18 years ago
  16. 4b4a63e Replaced my dumb way of calculating seconds to midnight with Tim Peters' much more sensible suggestion. What was I thinking ?!? by Vinay Sajip · 18 years ago
  17. 502348d StreamHandler now checks explicitly for None before using sys.stderr as the stream (see SF bug #1463840). by Vinay Sajip · 18 years ago
  18. a2173a1 Catch situations where currentframe() returns None. See SF patch #1447410, this is a different implementation. by Vinay Sajip · 18 years ago
  19. d364a07 Added logThreads and logProcesses to allow conditional omission of logging this information by Vinay Sajip · 18 years ago
  20. ed1992f Added function name to LogRecord. by Vinay Sajip · 19 years ago
  21. 260ce43 Propagate exceptions from shutdown() if raiseExceptions is not set. by Vinay Sajip · 19 years ago
  22. e0f8592 Removed defensive test in Handler.close by Vinay Sajip · 19 years ago
  23. 55cd82f Get test_logging to not hang when running under regrtest.py -R :: by Neal Norwitz · 19 years ago
  24. 7a7160b Added the ability to specify a class attribute in Formatter configuration. Contributed by Shane Hathaway. by Vinay Sajip · 19 years ago
  25. 989b69a Refactoring for fileConfig. Contributed by Shane Hathaway. by Vinay Sajip · 19 years ago
  26. 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
  27. 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
  28. d952041 TimedRotatingFileHandler now calculates next rollover from previous rollover rather than current time. by Vinay Sajip · 19 years ago
  29. 74a83e9 Fixed bug in time-to-midnight calculation. by Vinay Sajip · 19 years ago
  30. 8b6b53f Fixed indentation bug in _connect_unixsocket (thanks to Ken Lalonde for reporting it/supplying a patch) by Vinay Sajip · 19 years ago
  31. 245a5ab Exception handling now raises KeyboardInterrupt and SystemExit rather than passing to handleError by Vinay Sajip · 19 years ago
  32. 85c1909 Exception handling now raises KeyboardInterrupt and SystemExit rather than passing to handleError by Vinay Sajip · 19 years ago
  33. 1e86beb One-off "No handlers..." error message only raised if raiseExceptions is set. by Vinay Sajip · 19 years ago
  34. 1e8659b Don't use a string exception since it's deprecated by Neal Norwitz · 19 years ago
  35. 239322b Optimised Placeholders handling of child loggers by using a dict rather than a list (much slower in the pathological case of hundreds of child Loggers to a Placeholder - problem reported by Ryan Blazecka). by Vinay Sajip · 19 years ago
  36. b793506 Added Host and Content-type headers to requests sent by HTTPHandler (suggested by Steven Vereecken) by Vinay Sajip · 19 years ago
  37. 43d6e81 Fixed bug where the logging message was wrongly being demoted from Unicode to string (SF #1314107) by Vinay Sajip · 19 years ago
  38. 116f16e Added lock acquisition around handler removal from logger by Vinay Sajip · 19 years ago
  39. 0ee9ba2 Added _handlerList to allow shutdown to flush and close handlers in reverse order of creation (see SF# 1282539) by Vinay Sajip · 19 years ago
  40. c384fc2 Changed _srcfile determination to support py2exe. by Vinay Sajip · 19 years ago
  41. 4c1423b Documentation clarified re. config socket listener protocol by Vinay Sajip · 19 years ago
  42. 4a70486 Added threadName and now using re-entrant lock by Vinay Sajip · 19 years ago
  43. 8e628d2 Made traceback unconditional, to avoid lock contention problems when logging errors occur in a custom importer (SF path #1158052). by Vinay Sajip · 19 years ago
  44. 4600f11 Added optional encoding argument to file handlers. by Vinay Sajip · 19 years ago
  45. b89e7c9 Added optional encoding argument to file handlers. Made traceback import unconditional, to avoid lock contention problems which occur when logging from custom importers (SF patch #1158052) by Vinay Sajip · 19 years ago
  46. 612df8e Handle errors in imports of thread, threading by Vinay Sajip · 19 years ago
  47. 829dc51 Improved frame handling for 1.5.2, and now return func from findCaller (not actually used yet) by Vinay Sajip · 19 years ago
  48. a1974c1 Improved SysLogHandler error recovery (patch by Erik Forsberg) by Vinay Sajip · 20 years ago
  49. dccd432 Fixed bug in handling of args in LogRecord.__init__. by Vinay Sajip · 20 years ago
  50. 4ed315a Changed handling of args in LogRecord.__init__. by Vinay Sajip · 20 years ago
  51. e7d4066 Changes made to maintain 1.5.2 compatibility. by Vinay Sajip · 20 years ago
  52. 2d5fee0 Version number updated to 0.4.9.5 by Vinay Sajip · 20 years ago
  53. b2635b2 Added log() function by Vinay Sajip · 20 years ago
  54. 02dd994 Added exception handling during handler initialization in fileConfig() by Vinay Sajip · 20 years ago
  55. b959117 Added getLoggerClass() by Vinay Sajip · 20 years ago
  56. fb15417 Fixed bug in DatagramHandler.send() by Vinay Sajip · 20 years ago
  57. 318a12e Patch #791776: Replace SMTPHandler.date_time with email.Utils.formatdate. by Martin v. Löwis · 20 years ago
  58. eb477d0 Updated Logger.log() docstring to clarify that lvl parameter should be an integer. by Vinay Sajip · 20 years ago
  59. e12f715 Ignore exceptions which occur when closing files in shutdown() by Vinay Sajip · 20 years ago
  60. 5e9e9e1 Removed debugging print statements from TimedRotatingFileHandler, and sorted list returned by glob.glob() (SF #987166) by Vinay Sajip · 20 years ago
  61. 3970c11 Add exception handling for BaseRotatingFileHandler (SF #979252) by Vinay Sajip · 20 years ago
  62. 4bbab2b FileHandler now stores the basename as an absolute path (fix for SF #982049) by Vinay Sajip · 20 years ago
  63. 4e0e1b6 Whitespace normalization. by Tim Peters · 20 years ago
  64. 17c52d8 Refactored RotatingFileHandler to create a base class for rotating handlers. Added TimedRotatingFileHandler. by Vinay Sajip · 20 years ago
  65. 779e0c9 Changed basicConfig() to add keyword arguments. Changes are backward-compatible. by Vinay Sajip · 20 years ago
  66. 4102478 Removed spurious import statement by Vinay Sajip · 20 years ago
  67. 3f74284 Minor documentation changes by Vinay Sajip · 20 years ago
  68. f42d95e Added close() (which flushes) to BufferingHandler and tidied MemoryHandler.close() [SF #901330] by Vinay Sajip · 20 years ago
  69. 3f9f84d Handler close() functions call flush() [SF #901330] by Vinay Sajip · 20 years ago
  70. ed6bb14 Copyright year & version number/version date changes. by Vinay Sajip · 20 years ago
  71. 48cfe38 Copyright year change. by Vinay Sajip · 20 years ago
  72. 326441e Copyright year change. Corrections to comments. Added RESET_ERROR definition. by Vinay Sajip · 20 years ago
  73. e21f606 SF bug #835457: Small typo in logging documentation by Raymond Hettinger · 21 years ago
  74. 6f3eaa6 SF patch #761519: Fixes for bugs 760703 and 757821 by Raymond Hettinger · 21 years ago
  75. a256f7d Fix SF bug #723801, logging.setLoggerClass() doesn't support new-style classes by Neal Norwitz · 21 years ago
  76. f297bd1 SF patch #725904, Minor changes to logging from module author (Vinay Sajip) by Neal Norwitz · 21 years ago
  77. 0df6442 Undo the apply() removals; this code needs to run under Python 1.5.2. by Guido van Rossum · 21 years ago
  78. 68468eb Get rid of many apply() calls. by Guido van Rossum · 21 years ago
  79. 4c641d0 getpid doesn't exist on MacOS9. by Jack Jansen · 21 years ago
  80. 6fa635d SF patch #687683, Patches to logging (updates from Vinay) by Neal Norwitz · 21 years ago
  81. f4cdb47 amk pointed out that syslog may use UDP or TCP sockets. by Neal Norwitz · 22 years ago
  82. d89c406 SF #642974, logging SysLogHandler proto type wrong by Neal Norwitz · 22 years ago
  83. 250684d Use lightweight introspection instead of the inspect module hammer. by Jeremy Hylton · 22 years ago
  84. 2447589 Fix what I believe is a bug: when removing all previous handlers, by Guido van Rossum · 22 years ago
  85. c4d047a SF Patch #638825 by Neal Norwitz · 22 years ago
  86. d1cade0 SF Patch #638825 logging module by Neal Norwitz · 22 years ago
  87. 3165786 From SF patch 638299 [by Vinaj]: fileConfig() now takes an optional by Guido van Rossum · 22 years ago
  88. 455ab77 Get rid of #! lines, references to usage as __main__, README.txt, and by Guido van Rossum · 22 years ago
  89. 57102f8 Adding Vinay Sajip's logging package. by Guido van Rossum · 22 years ago