liblog-log4perl-perl 1.29-1ubuntu1 source package in Ubuntu

Changelog

liblog-log4perl-perl (1.29-1ubuntu1) maverick; urgency=low

  * Merge from debian unstable.  Remaining changes:
    - Drop unneeded Universe Build-Depends-Indep libdbd-csv-perl and
      liblog-dispatch-perl and change them to Suggests from Recommends

liblog-log4perl-perl (1.29-1) unstable; urgency=low

  * New upstream release
   +    (ms) Added documentation on how to use Log4perl's :easy macros
             with Catalyst in Log::Log4perl::Catalyst.
   +    (ms) wrapper_register() now deals with caller_depth automatically.
             Backwards compatibility with old wrapper classes using
             caller_depth directly is provided. Documentation has been
             updated.
   +    (ms) Felix Antonius Wilhelm Ostmann reported Resurrector.pm
             crashes, fixed as suggested by setting the %INC value to
             the module path.
   +    (ms) Another caller_depth fix in Log::Log4perl::Catalyst.
   +    (ms) Fixed logdie() caller_depth bug reported by Rob Retter.
   +    (ms) [RT 56145] Saving errstr in DBI appender to survive ping()
   +    (ms) Added INTERNAL_DEBUG env variable to test suite triggering
             all _INTERNAL_DEBUG statements to be printed for better
             error diagnosis on misbehaving systems.

liblog-log4perl-perl (1.28-1) unstable; urgency=low

  * New upstream release
 -- Scott Kitterman <email address hidden>   Mon, 13 Sep 2010 22:14:22 -0400

Upload details

Uploaded by:
Scott Kitterman
Uploaded to:
Maverick
Original maintainer:
Ubuntu Core Development Team
Architectures:
all
Section:
perl
Urgency:
Low Urgency

See full publishing history Publishing

Series Pocket Published Component Section
Precise release main perl

Builds

Maverick: [FULLYBUILT] i386

Downloads

File Size SHA-256 Checksum
liblog-log4perl-perl_1.29.orig.tar.gz 253.5 KiB 65d0d8a80e8ce303f9ad884d17fbd95b892c9c5bbbadd4ca4f2d1fceba393562
liblog-log4perl-perl_1.29-1ubuntu1.diff.gz 28.0 KiB 3279d4c038c16b885162c7ea94283d768958e8e5edf9e71dfa7563417846a299
liblog-log4perl-perl_1.29-1ubuntu1.dsc 1.3 KiB 3b5afc4b785bd73087262850f9080fb206778315eb88a2cd882b692f4e352e39

Available diffs

View changes file

Binary packages built by this source

liblog-log4perl-perl: Perl port of the widely popular log4j logging package

 Log::Log4perl is a pure Perl port of the widely popular Apache/Jakarta
 log4j library for Java. In the spirit of log4j, Log::Log4perl
 addresses the shortcomings of typical ad-hoc or homegrown logging
 systems by providing three mechanisms to control the amount of data
 being logged and where it ends up at:
    * Levels allow you to specify the priority of log
      messages. Low-priority messages are suppressed when the system's
      setting allows for only higher-priority messages.
    * Categories define which parts of the system you want to enable
      logging in. Category inheritance allows you to elegantly reuse
      and override previously defined settings of different parts in the
      category hierarchy. So, at a central location in your system (either
      in a configuration file or in the startup code) you may specify which
      components (classes,functions) of your system should generate logs.
    * Appenders allow you to choose which output devices the log data
      is being written to, once it clears the previously listed
      hurdles.