- 804899b logging: Added getChild utility method to Logger and added isEnabledFor method to LoggerAdapter. by Vinay Sajip · 15 years ago
- 31e928e Issue #8201: logging: Handle config errors when non-ASCII and Unicode logger names exist at the same time. by Vinay Sajip · 15 years ago
- 3017a7b Issue #8200: logging: Handle errors when multiprocessing is not fully loaded when logging occurs. by Vinay Sajip · 15 years ago
- 2060e42 Issue #8162: logging: Clarified docstring and documentation for disable function. by Vinay Sajip · 15 years ago
- 9098ee4 Issue #8117: logging: Improved algorithm for computing initial rollover time. by Vinay Sajip · 15 years ago
- 1adbee2 Added checks for tuples in dictConfig. by Vinay Sajip · 15 years ago
- d45a278 Added schema version test in dictConfig. by Vinay Sajip · 15 years ago
- d77eb9a Factored out time usage determination into a method, to facilitate alternative formatting implementations in the future. by Vinay Sajip · 15 years ago
- cfc43e9 logging: gingerly re-enabling skipped tests after improving thread sync code in configurator. by Vinay Sajip · 16 years ago
- 7ce5c83 logging: Removed some more 1.5.2 support code. by Vinay Sajip · 16 years ago
- 64e8b97 Issue #7869: logging: improved format-time diagnostics and removed some 1.5.2 support code. by Vinay Sajip · 16 years ago
- 657514a Issue #7868: logging: added loggerClass attribute to Manager. by Vinay Sajip · 16 years ago
- 239f138 make waiting for the server to start robust by Benjamin Peterson · 16 years ago
- 98ce620 Removed spurious print statement. by Vinay Sajip · 16 years ago
- 28c382f Logging: Implemented PEP 391. by Vinay Sajip · 16 years ago
- 8cdc9bc More yearly updates. by Georg Brandl · 16 years ago
- 5cc4e2a Issue #7470: logging: fix bug in Unicode encoding fallback. by Vinay Sajip · 16 years ago
- bd1094a logging: Improved support for SMTP over TLS. by Vinay Sajip · 16 years ago
- 4830566 logging: Added optional 'secure' parameter to SMTPHandler. by Vinay Sajip · 16 years ago
- 01801d1 Issue #7403: Fixed possible race condition in lock creation. by Vinay Sajip · 16 years ago
- 2ed8813 logging: Issue 6615: Changed handler prepend to append. by Vinay Sajip · 16 years ago
- 17e94e0 logging: made _handlers a WeakValueDictionary. by Vinay Sajip · 16 years ago
- c470d68 Issue #6615: logging: Used weak references in internal handler list. Thanks to flox (Florent Xicluna) for the patch. by Vinay Sajip · 16 years ago
- 1d2c16d Made logging classes new-style and added name property to handlers. by Vinay Sajip · 16 years ago
- 5ac6528 Issue #7077: logging: SysLogHandler now treats Unicode as per RFC 5424. by Vinay Sajip · 16 years ago
- 03d5c34 Issue #7120: logging: Removed import of multiprocessing which is causing crash in GAE. by Vinay Sajip · 16 years ago
- 1c77b7f Issue #7086: Added TCP support to SysLogHandler and tidied up some anachronisms in the code. by Vinay Sajip · 16 years ago
- f70867a Issue #7014: logging: Improved IronPython 2.6 compatibility. by Vinay Sajip · 16 years ago
- 4780c9a Tidied up name of parameter in StreamHandler by Vinay Sajip · 16 years ago
- cbb24b3 Issue #6314: logging: Extra checks on the "level" argument in more places. by Vinay Sajip · 16 years ago
- 603fb6d Issue #6314: logging.basicConfig() performs extra checks on the "level" argument. by Vinay Sajip · 16 years ago
- 91290b5 Issue #5262: Improved fix. by Vinay Sajip · 16 years ago
- 83da034 Issue #5262: Fixed bug in next roll over time computation in TimedRotatingFileHandler. by Vinay Sajip · 16 years ago
- f9b01fe Issue #5971: StreamHandler.handleError now swallows IOErrors which occur when trying to print a traceback. by Vinay Sajip · 16 years ago
- e34d6aa Issue #5854: Updated __all__ to include some missing names and remove some names which should not be exported. by Vinay Sajip · 16 years ago
- cbb5308 Issue #5170: Fixed regression caused when fixing #5768. by Vinay Sajip · 16 years ago
- 74f0450 Issue #5768: Change to Unicode output logic and test case for same. by Vinay Sajip · 16 years ago
- 1a0d2be #5287: Add exception handling around findCaller() call to help out IronPython. by Vinay Sajip · 16 years ago
- b20af94 Issue #5170: Fixed Unicode output bug in logging and added test case. This is a regression which did not occur in 2.5. by Vinay Sajip · 17 years ago
- aecf36a Issue 5013: Fixed bug in FileHandler when delay was set - added fix for RotatingFileHandler and changed header comment slightly. by Vinay Sajip · 17 years ago
- 5fb11b2 Issue 5013: Fixed bug in FileHandler when delay was set. by Vinay Sajip · 17 years ago
- 438195f issue 4301: patch logging to add processName, remove the old _check_logger_class code by Jesse Noller · 17 years ago
- 84040db Issue 4336: Let users of HTTPConnection.endheaders() submit a message body to the function if required. by Kristján Valur Jónsson · 17 years ago
- 3e16f3d remove has_key usage by Benjamin Peterson · 17 years ago
- 6831d6b Took Nick Coghlan's advice about importing warnings globally in logging, to avoid the possibility of race conditions: "This could deadlock if a thread spawned as a side effect of importing a module happens to trigger a warning. warnings is pulled into sys.modules as part of the interpreter startup - having a global 'import warnings' shouldn't have any real effect on logging's import time." by Vinay Sajip · 17 years ago
- 213faca Issue #4384: Added logging integration with warnings module using captureWarnings(). This change includes a NullHandler which does nothing; it will be of use to library developers who want to avoid the "No handlers could be found for logger XXX" message which can appear if the library user doesn't configure logging. by Vinay Sajip · 17 years ago
- 65d66e1 Issue #3772: Fixed regression problem in StreamHandler.emit(). by Vinay Sajip · 17 years ago
- 6a2fd81 Issue #3726: Allowed spaces in separators in logging configuration files. by Vinay Sajip · 17 years ago
- 72ed078 logging: fixed lack of use of encoding attribute specified on a stream. by Vinay Sajip · 17 years ago
- a9b2222 change a few uses of the threading APIs by Benjamin Peterson · 17 years ago
- e6bfe80 Remove dict.has_key() and apply() usage from the logging package to silence by Brett Cannon · 17 years ago
- bc7e34f Issue #3389: Allow resolving dotted names for handlers in logging configuration files. Thanks to Philip Jenvey for the patch. by Vinay Sajip · 17 years ago
- 5ff7171 Removed out-of-date comment in _install_handlers and by Vinay Sajip · 17 years ago
- 5f7b97d Bug #3136: fileConfig()'s disabling of old loggers is now conditional via an optional disable_existing_loggers parameter, but the default value is such that the old behaviour is preserved. by Vinay Sajip · 17 years ago
- 8f96b8e Bug #3126: StreamHandler and FileHandler check before calling "flush" and "close" that the stream object has these, using hasattr (thanks to bobf for the patch). by Vinay Sajip · 17 years ago
- 0fbcf69 give the threading API PEP 8 names by Benjamin Peterson · 17 years ago
- 392c6fc ConfigParser renaming reversal part 3: move module into place and adapt imports. by Georg Brandl · 17 years ago
- e152a77 socketserver renaming reversal part 3: move the module into the right by Georg Brandl · 17 years ago
- 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
- e2514c6 Updated import statements to use the new `configparser` module name. by Alexandre Vassalotti · 17 years ago
- d192c92 Updated all import statements to use the new socketserver module name. by Alexandre Vassalotti · 17 years ago
- 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
- c5f05e4 Patch #2167 from calvin: Remove unused imports by Christian Heimes · 17 years ago
- 71fa93a Add __all__ to logging module. by Raymond Hettinger · 17 years ago
- 92aa2f8 Added optional delay argument to FileHandler and subclasses. by Vinay Sajip · 18 years ago
- 97ef165 Added optional delay argument to FileHandler and subclasses. by Vinay Sajip · 18 years ago
- ae747dc Fix: #1836: Off-by-one bug in TimedRotatingFileHandler rollover calculation. Patch thanks to Kathryn M. Kowalski. by Vinay Sajip · 18 years ago
- a26c73e Added LoggerAdapter class, changed copyright dates, made check for extra parameter passed to logging methods explicitly against None rather than a truth value. by Vinay Sajip · 18 years ago
- 95dd03b Fixed a bug reported (in private email, by Robert Crida) in logging configuration whereby child loggers of a logger named in a configuration file, which are not themselves named in the configuration, are disabled when the configuration is applied. by Vinay Sajip · 18 years ago
- bababa3 Bug #1321: Fixed logic error in TimedRotatingFileHandler.__init__() by Vinay Sajip · 18 years ago
- c537881 Change to LogRecord.__init__() to fix #1206. Note that archaic use of type(x) == types.DictType is because of keeping 1.5.2 compatibility. While this is much less relevant these days, there probably needs to be a separate commit for removing all archaic constructs at the same time. by Vinay Sajip · 18 years ago
- 66ba9ff Minor date change. by Vinay Sajip · 18 years ago
- 90d9361 Change to basicConfig() to fix #1021. by Vinay Sajip · 18 years ago
- 4df367c Change to flush and close logic to fix #1760556. by Vinay Sajip · 18 years ago
- daa6f25 Patch #1779550: remove redundant code in logging. by Georg Brandl · 18 years ago
- 75ec1db Bug #1737864: allow empty message in logging format routines. by Georg Brandl · 18 years ago
- 754a5fb Updated docstring for SysLogHandler (#1720726). by Vinay Sajip · 18 years ago
- 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
- aa7b16a Added optional timeout to SocketHandler.makeSocket (SF #1695948) by Vinay Sajip · 18 years ago
- f7ccc10 Minor fix for currentframe (SF #1652788). by Vinay Sajip · 18 years ago
- 5a096e1 Use new email module names (#1637162, #1637159, #1637157). by Georg Brandl · 19 years ago
- b3d8a06 Updated rotating file handlers to use _open(). by Vinay Sajip · 19 years ago
- 73306b0 Added WatchedFileHandler (based on SF patch #1598415) by Vinay Sajip · 19 years ago
- 1211edd Added a docstring by Vinay Sajip · 19 years ago
- 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 · 19 years ago
- 2cd79f6 Bare except clause removed from LogRecord.__init__. Now, only ValueError, TypeError and AttributeError are trapped. by Vinay Sajip · 19 years ago
- c683a87 Bare except clause removed from SMTPHandler.emit(). Now, only ImportError is trapped. by Vinay Sajip · 19 years ago
- 66a1726 Patch by "cuppatea" (SF #1503765) by Vinay Sajip · 19 years ago
- 5492e17 Patch by Jeremy Katz (SF #1609407) by Vinay Sajip · 19 years ago
- ef7f3bf Change to improve speed of _fixupChildren by Vinay Sajip · 19 years ago
- 2c050af Modified LogRecord.__init__ to make the func parameter optional. (See SF #1569622). by Vinay Sajip · 19 years ago
- 4e93313 Fix missing import of the types module in logging.config. by Georg Brandl · 19 years ago
- f3e3042 Repair logging test spew caused by rev. 51206. by Georg Brandl · 19 years ago
- 0a7d1bb logging's atexit hook now runs even if the rest of the module has by Georg Brandl · 19 years ago
- 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
- cea4bf0 Fixed bug in fileConfig() which failed to clear logging._handlerList by Vinay Sajip · 19 years ago
- 6dd59f1 Removed buggy exception handling in doRollover of rotating file handlers. Exceptions now propagate to caller. by Vinay Sajip · 19 years ago
- 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 · 19 years ago
- 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
- 502348d StreamHandler now checks explicitly for None before using sys.stderr as the stream (see SF bug #1463840). by Vinay Sajip · 19 years ago