File: control

package info (click to toggle)
liblog-any-adapter-callback-perl 0.102-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 156 kB
  • sloc: perl: 94; makefile: 2
file content (33 lines) | stat: -rw-r--r-- 1,495 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
Source: liblog-any-adapter-callback-perl
Maintainer: Debian Perl Group <pkg-perl-maintainers@lists.alioth.debian.org>
Uploaders: Robin Sheat <robin@catalyst.net.nz>
Section: perl
Testsuite: autopkgtest-pkg-perl
Priority: optional
Build-Depends: debhelper-compat (= 13)
Build-Depends-Indep: liblog-any-perl <!nocheck>,
                     libtest-simple-perl <!nocheck>,
                     perl
Standards-Version: 4.6.2
Vcs-Browser: https://salsa.debian.org/perl-team/modules/packages/liblog-any-adapter-callback-perl
Vcs-Git: https://salsa.debian.org/perl-team/modules/packages/liblog-any-adapter-callback-perl.git
Homepage: https://metacpan.org/release/Log-Any-Adapter-Callback
Rules-Requires-Root: no

Package: liblog-any-adapter-callback-perl
Architecture: all
Depends: ${misc:Depends},
         ${perl:Depends},
         liblog-any-perl
Description: module to send Log::Any logs to a subroutine
 Log::Any::Adapter::Callback lets you specify callback subroutine to be called
 by Log::Any's logging methods (like $log->debug(), $log->error(), etc) and
 detection methods (like $log->is_warning(), $log->is_fatal(), etc.).
 .
 This adapter is used for customized logging, and is mostly a convenient
 construct to save a few lines of code. You could achieve the same effect by
 creating a full Log::Any adapter class.
 .
 DEPRECATION NOTICE: Log::Any distribution since 1.708 comes with
 Log::Any::Adapter::Capture which does the same thing.
 Log::Any::Adapter::Callback is hence deprecated.