Index | index by Group | index by Distribution | index by Vendor | index by creation date | index by Name | Mirrors | Help | Search |
Name: perl-Log-Dispatch | Distribution: SUSE Linux Enterprise 15 SP6 |
Version: 2.71 | Vendor: openSUSE |
Release: bp156.1.1 | Build date: Thu Sep 7 11:28:30 2023 |
Group: Unspecified | Build host: h02-ch1c |
Size: 176853 | Source RPM: perl-Log-Dispatch-2.71-bp156.1.1.src.rpm |
Packager: https://bugs.opensuse.org | |
Url: https://metacpan.org/release/Log-Dispatch | |
Summary: Dispatches messages to one or more outputs |
This module manages a set of Log::Dispatch::* output objects that can be logged to via a unified interface. The idea is that you create a Log::Dispatch object and then add various logging objects to it (such as a file logger or screen logger). Then you call the 'log' method of the dispatch object, which passes the message to each of the objects, which in turn decide whether or not to accept the message and what to do with it. This makes it possible to call single method and send a message to a log file, via email, to the screen, and anywhere else, all with very little code needed on your part, once the dispatching object has been created.
Artistic-2.0
* Fri Apr 21 2023 Tina Müller <timueller+perl@suse.de> - updated to 2.71 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.71 2023-04-05 - The docs for the Screen output were never updated after the changes in 2.50, when it reverted back to using STDOUT or STDERR directly. This led to a lot of the docs being confusing and wrong. Reported by @mauke. GH #65, #66, and [#67]. * Tue Jul 21 2020 Tina Müller <timueller+perl@suse.de> - updated to 2.70 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.70 2020-07-20 - Make locking test wait longer before giving up. Some filesystems (like NFS) can be quite slow to lock files. Fixed by Joelle Maslak. GH #61. * Mon Oct 28 2019 <timueller+perl@suse.de> - updated to 2.69 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.69 2019-10-25 - Fix a warning Log::Dispatch::Email::Mailsender (GH #57). Fixed by Graham Knop. 58 #GH. * Thu Aug 23 2018 coolo@suse.com - updated to 2.68 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.68 2018-08-21 - Speedups to the internals to avoid re-validating the same sets of parameters repeatedly. Based on a PR #54 from Sergey Leschenko. * Sun Oct 01 2017 coolo@suse.com - updated to 2.67 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.67 2017-09-24 - Added a lazy_open option to the File output. This delays opening the file until the first time a log message is written to it. Implemented by Slaven Rezić. GH #50. * Wed Aug 16 2017 coolo@suse.com - updated to 2.66 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.66 2017-08-14 - Fixed the ApacheLog output, which was broken in 2.60. Fixed by Michael Schout. GitHub #48 and #49. * Wed Jun 14 2017 coolo@suse.com - updated to 2.65 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.65 2017-06-11 - When Log::Dispatch::File is asked to chmod a file and that fails, show the requested permissions in octal. Patch by Carsten Grohmann. GitHub #46. 2.64 2017-02-25 (TRIAL RELEASE) - Improve level validation and canonicalization logic. Patch by Kerin Millar, minor changes and tests by Kivanc Yazan. Github #42. - The log_and_die and log_and_croak methods are now identical, as we set @CARP_NOT for Log::Dispatch to exclude the Log::Dispatch package. You can still explicitly pass carp_level to log_and_croak. * Thu May 25 2017 coolo@suse.com - updated to 2.63 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.63 2017-02-19 - Updated the conflicting version for Log::Dispatch::File::Stamped in metadata (due to changes in handling of close_after_write). Patch by Karen Etheridge. GitHub #41. 2.62 2017-02-13 - Devel::Confess was accidentally being loaded in Log::Dispatch. Fixed by Karen Etheridge. GitHub #39. 2.61 2017-02-13 - The 2.60 release would throw an exception if the logged message was empty. While this makes sense, it also breaks backwards compatibility, so it has been reverted. Reported by Greg Oschwald. GitHub #38. - The 2.60 release would throw an exception if you tried to create a Syslog output where the ident was an empty string. Reported by Greg Oschwald. GitHub #38. 2.60 2017-02-12 - Same as 2.59 ... Switched from Params::Validate to Params::ValidationCompiler. This should speed up constructors and logging a little bit. This also allows Log::Dispatch::File to accept things like Path::Tiny objects for filenames. Reported by Joel Berger. GitHub #36. 2.59 2017-02-05 (TRIAL RELEASE) - Switched from Params::Validate to Params::ValidationCompiler. This should speed up constructors and logging a little bit. This also allows Log::Dispatch::File to accept things like Path::Tiny objects for filenames. Reported by Joel Berger. GitHub #36. * Tue Nov 15 2016 coolo@suse.com - updated to 2.58 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.58 2016-11-13 - Switched from RT to the GitHub issue tracker. * Mon Aug 15 2016 coolo@suse.com - updated to 2.57 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.57 2016-08-13 - Added a remove_callback method to the main Log::Dispatch object as well as all outputs. * Mon May 23 2016 coolo@suse.com - updated to 2.56 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.56 2016-05-06 - Cleaned up some cruft in Pod. Some sections ended up in there twice. 2.55 2016-05-06 - The values of $@, $!, and $? are protected in various cases where they could end up being changed by logging code. Patch by Salvador Fandiño. GitHub #18. - Treat MSYS2 like Cygwin in tests. Fix by Graham Ollis. GitHub #19. * Tue Jan 19 2016 coolo@suse.com - updated to 2.54 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.54 2016-01-18 - Fixed File::Locked even more. While some deadlocks were eliminated, there was still an issue when a Log::Dispatch object was created in a parent process and then recreated in the children. If the close_after_write parameter was false, then there would be a deadlock. - Made Syslog work on a threaded Perl when the threads module was not explicitly loaded. Fixed by Konrad Bucheli. GitHub #13. - The log() method now accepts a level parameter as an integer. Fixed by Steve Bertrand. GitHub #15. 2.53 2016-01-14 - Actually fix File::Locked, this time with some actual tests. 2.52 2016-01-13 - Make File::Locked output do an explicit unlock if the close_after_write option is not set. Without this it would open the file once in each process, attempting to get a lock at open time, pretty much guaranteeing a deadlock in a multiprocess environment. Now it should work sanely whether close_after_write is true or not. * Sun Sep 20 2015 coolo@suse.com - updated to 2.51 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.51 2015-09-19 - Fixed t/08-screen.t on Windows platforms. * Thu Sep 03 2015 coolo@suse.com - updated to 2.50 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.50 2015-09-02 - Changed how the Screen output handles UTF-8 data once more. The Screen module has gone back to printing output directly to the global STDOUT and STDERR handles. The previous changes broke the tests for several modules, including Log::Dispatch::Config. This change should fix them. * Sun Aug 23 2015 coolo@suse.com - updated to 2.49 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.49 2015-08-21 - The Screen output now enables autoflush on the handle it uses to send output to STDOUT or STDERR every time it sends a message. This does not affect the global STDOUT or STDERR, as the Screen module makes its own handle for output. This fixes a bug reported by Karen Etheridge that caused this module to not play nicely with Capture::Tiny in some cases. RT #106605. * Sat Aug 08 2015 coolo@suse.com - updated to 2.48 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.48 2015-08-07 - Fixed (I hope) tests that were added in the last release that fail on Windows. 2.47 2015-08-06 - Really, really make per-thread locking work. Depending on when threads and threads::shared were loaded, you might get an error like 'Type of arg 1 to threads::shared::share must be one of $@% at .../Log/Dispatch/Syslog.pm line 67, near "$thread_lock)"'. Reported by David Schweikert. - Added support for auth-related parameters and replyto to Log::Dispatch::Email::MailSender. Implemented by Rohan Carly. Based on GitHub #10. - Added a utf8 flag for Log::Dispatch::Screen. If this is true, then it sets the ":encoding(UTF-8)" flag on the handle it uses for output (without affecting STDOUT or STDERR elsewhere). Suggested by Ivan Baidakou. 2.46 2015-08-05 - Really make the per-thread locking in the Syslog output work. Based on a patch by David Schweikert. GitHub #9. * Mon Jun 15 2015 coolo@suse.com - updated to 2.45 see /usr/share/doc/packages/perl-Log-Dispatch/Changes 2.45 2015-06-14 - Don't include threads and threads::shared in list of dependencies. This is only needed for Log::Dispatch::Syslog and is loaded at runtime as needed (which has its own issues but ...). Reported by Kent Fredric. RT #103392. * Sat Mar 21 2015 mpluskal@suse.com - Update to 2.44 * The fix for a buffered email output in the last release introduced a bug with _non-buffered_ email outputs. This would cause a fatal error during global destruction when the DESTROY method was called. Reported by Chrison Hutchinson. RT #99474. - Changes for 2.43 * Fixed the thread locking in Log::Dispatch::Syslog (I hope). The previous version caused Perl to crash when per-thread locking was enabled. Note that I don't use threads so I haven't tested this. Patch by Sergio Fernández Muñoz. RT # 99208. * If a buffered email output is being destroyed during global destruction and still has messages in the buffer, we warn and do not attempt to send the messages. During global destruction, the package we use to send email may already be destroyed, leading to weird errors when we try to use it. Reported by Mark Overmeer. RT #97733. * In 2.42 I added the ability to pass a hashref for the socket parameter given to Log::Dispatch::Syslog, but I forgot to mention this here. This is necessary to support remote logging. Patch by David Coppit. RT #93045.
/usr/lib/perl5/vendor_perl/5.26.1/Log /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/ApacheLog.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Base.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Code.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Conflicts.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Email /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Email.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Email/MIMELite.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Email/MailSend.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Email/MailSender.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Email/MailSendmail.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/File /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/File.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/File/Locked.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Handle.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Null.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Output.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Screen.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Syslog.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Types.pm /usr/lib/perl5/vendor_perl/5.26.1/Log/Dispatch/Vars.pm /usr/lib/perl5/vendor_perl/5.26.1/x86_64-linux-thread-multi /usr/share/doc/packages/perl-Log-Dispatch /usr/share/doc/packages/perl-Log-Dispatch/CODE_OF_CONDUCT.md /usr/share/doc/packages/perl-Log-Dispatch/CONTRIBUTING.md /usr/share/doc/packages/perl-Log-Dispatch/Changes /usr/share/doc/packages/perl-Log-Dispatch/README.md /usr/share/licenses/perl-Log-Dispatch /usr/share/licenses/perl-Log-Dispatch/LICENSE /usr/share/man/man3/Log::Dispatch.3pm.gz /usr/share/man/man3/Log::Dispatch::ApacheLog.3pm.gz /usr/share/man/man3/Log::Dispatch::Base.3pm.gz /usr/share/man/man3/Log::Dispatch::Code.3pm.gz /usr/share/man/man3/Log::Dispatch::Email.3pm.gz /usr/share/man/man3/Log::Dispatch::Email::MIMELite.3pm.gz /usr/share/man/man3/Log::Dispatch::Email::MailSend.3pm.gz /usr/share/man/man3/Log::Dispatch::Email::MailSender.3pm.gz /usr/share/man/man3/Log::Dispatch::Email::MailSendmail.3pm.gz /usr/share/man/man3/Log::Dispatch::File.3pm.gz /usr/share/man/man3/Log::Dispatch::File::Locked.3pm.gz /usr/share/man/man3/Log::Dispatch::Handle.3pm.gz /usr/share/man/man3/Log::Dispatch::Null.3pm.gz /usr/share/man/man3/Log::Dispatch::Output.3pm.gz /usr/share/man/man3/Log::Dispatch::Screen.3pm.gz /usr/share/man/man3/Log::Dispatch::Syslog.3pm.gz /usr/share/man/man3/Log::Dispatch::Types.3pm.gz /usr/share/man/man3/Log::Dispatch::Vars.3pm.gz
Generated by rpm2html 1.8.1
Fabrice Bellet, Tue Jul 9 19:58:50 2024