Logbook Changelog¶
Here you can see the full list of changes between each Logbook release.
Version 0.4¶
Release date to be announced. Codename to be selected.
- Added
logbook.notifiers.NotifoHandler - channel is now documented to be used for filtering purposes if wanted. Previously this was an opaque string that was not intended for filtering of any kind.
Version 0.3¶
Released on October 23rd. Codename “Informant”
- Added
logbook.more.ColorizingStreamHandlerMixinandlogbook.more.ColorizedStderrHandler - Deprecated
logbook.RotatingFileHandlerBasebecause the interface was not flexible enough. - Provided basic Python 3 compatibility. This did cause a few smaller
API changes that caused minimal changes on Python 2 as well. The
deprecation of the
logbook.RotatingFileHandlerBasewas a result of this. - Added support for Python 2.4
- Added batch emitting support for handlers which now makes it possible
to use the
logbook.more.FingersCrossedHandlerwith thelogbook.MailHandler. - Moved the
FingersCrossedHandlerhandler into the base package. The old location stays importable for a few releases. - Added
logbook.GroupHandlerthat buffers records until the handler is popped. - Added
logbook.more.ExternalApplicationHandlerthat executes an external application for each log record emitted.
Version 0.2¶
Released on September 21st. Codename “Walls of Text”
- Implemented default with statement for handlers which is an alias for threadbound.
- applicationbound and threadbound return the handler now.
- Implemented channel recording on the log records.
- The
logbook.more.FingersCrossedHandlernow is set to ERROR by default and has the ability to create new loggers from a factory function. - Implemented maximum buffer size for the
logbook.more.FingersCrossedHandleras well as a lock for thread safety. - Added ability to filter for context.
- Moved bubbling flags and filters to the handler object.
- Moved context processors on their own stack.
- Removed the iter_context_handlers function.
- Renamed NestedHandlerSetup to
NestedSetupbecause it can now also configure processors. - Added the
logbook.Processorclass. - There is no difference between logger attached handlers and context specific handlers any more.
- Added a function to redirect warnings to logbook
(
logbook.compat.redirected_warnings()). - Fixed and improved
logbook.LoggerGroup. - The
logbook.TestHandlernow keeps the record open for further inspection. - The traceback is now removed from a log record when the record is closed. The formatted traceback is a cached property instead of a function.
- Added ticketing handlers that send logs directly into a database.
- Added MongoDB backend for ticketing handlers
- Added a
logbook.base.dispatch_record()function to dispatch records to handlers independently of a logger (uses the default record dispatching logic). - Renamed logger_name to channel.
- Added a multi processing log handler
(
logbook.more.MultiProcessingHandler). - Added a twitter handler.
- Added a ZeroMQ handler.
- Added a Growl handler.
- Added a Libnotify handler.
- Added a monitoring file handler.
- Added a handler wrapper that moves the actual handling into a background thread.
- The mail handler can now be configured to deliver each log record not more than n times in m seconds.
- Added support for Python 2.5
- Added a
logbook.queues.SubscriberGroupto deal with multiple subscribers. - Added a
logbook.compat.LoggingHandlerfor redirecting logbook log calls to the standard library’sloggingmodule.
Version 0.1¶
First public release.