/usr/share/perl5/Log/Dispatchouli/Proxy.pm is in liblog-dispatchouli-perl 2.015-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 | use strict;
use warnings;
package Log::Dispatchouli::Proxy;
# ABSTRACT: a simple wrapper around Log::Dispatch
$Log::Dispatchouli::Proxy::VERSION = '2.015';
use Params::Util qw(_ARRAY0 _HASH0);
#pod =head1 DESCRIPTION
#pod
#pod A Log::Dispatchouli::Proxy object is the child of a L<Log::Dispatchouli> logger
#pod (or another proxy) and relays log messages to its parent. It behaves almost
#pod identically to a Log::Dispatchouli logger, and you should refer there for more
#pod of its documentation.
#pod
#pod Here are the differences:
#pod
#pod =begin :list
#pod
#pod * You can't create a proxy with C<< ->new >>, only by calling C<< ->proxy >> on an existing logger or proxy.
#pod
#pod * C<set_debug> will set a value for the proxy; if none is set, C<get_debug> will check the parent's setting; C<clear_debug> will clear any set value on this proxy
#pod
#pod * C<log_debug> messages will be redispatched to C<log> (to the 'debug' logging level) to prevent parent loggers from dropping them due to C<debug> setting differences
#pod
#pod =end :list
#pod
#pod =cut
sub _new {
my ($class, $arg) = @_;
my $guts = {
parent => $arg->{parent},
logger => $arg->{logger},
debug => $arg->{debug},
proxy_prefix => $arg->{proxy_prefix},
};
bless $guts => $class;
}
sub proxy {
my ($self, $arg) = @_;
$arg ||= {};
(ref $self)->_new({
parent => $self,
logger => $self->logger,
debug => $arg->{debug},
muted => $arg->{muted},
proxy_prefix => $arg->{proxy_prefix},
});
}
sub parent { $_[0]{parent} }
sub logger { $_[0]{logger} }
sub ident { $_[0]{logger}->ident }
sub config_id { $_[0]{logger}->config_id }
sub set_prefix { $_[0]{prefix} = $_[1] }
sub get_prefix { $_[0]{prefix} }
sub clear_prefix { undef $_[0]{prefix} }
sub unset_prefix { $_[0]->clear_prefix }
sub set_debug { $_[0]{debug} = $_[1] ? 1 : 0 }
sub clear_debug { undef $_[0]{debug} }
sub get_debug {
return $_[0]{debug} if defined $_[0]{debug};
return $_[0]->parent->get_debug;
}
sub mute { $_[0]{muted} = 1 }
sub unmute { $_[0]{muted} = 0 }
sub set_muted { $_[0]{muted} = $_[1] ? 1 : 0 }
sub clear_muted { undef $_[0]{muted} }
sub _get_local_muted { $_[0]{muted} }
sub get_muted {
return $_[0]{muted} if defined $_[0]{muted};
return $_[0]->parent->get_muted;
}
sub _get_all_prefix {
my ($self, $arg) = @_;
return [
$self->{proxy_prefix},
$self->get_prefix,
_ARRAY0($arg->{prefix}) ? @{ $arg->{prefix} } : $arg->{prefix}
];
}
sub log {
my ($self, @rest) = @_;
my $arg = _HASH0($rest[0]) ? shift(@rest) : {};
return if $self->_get_local_muted and ! $arg->{fatal};
local $arg->{prefix} = $self->_get_all_prefix($arg);
$self->parent->log($arg, @rest);
}
sub log_fatal {
my ($self, @rest) = @_;
my $arg = _HASH0($rest[0]) ? shift(@rest) : {};
local $arg->{fatal} = 1;
$self->log($arg, @rest);
}
sub log_debug {
my ($self, @rest) = @_;
my $debug = $self->get_debug;
return if defined $debug and ! $debug;
my $arg = _HASH0($rest[0]) ? shift(@rest) : {};
local $arg->{level} = 'debug';
$self->log($arg, @rest);
}
sub info { shift()->log(@_); }
sub fatal { shift()->log_fatal(@_); }
sub debug { shift()->log_debug(@_); }
1;
__END__
=pod
=encoding UTF-8
=head1 NAME
Log::Dispatchouli::Proxy - a simple wrapper around Log::Dispatch
=head1 VERSION
version 2.015
=head1 DESCRIPTION
A Log::Dispatchouli::Proxy object is the child of a L<Log::Dispatchouli> logger
(or another proxy) and relays log messages to its parent. It behaves almost
identically to a Log::Dispatchouli logger, and you should refer there for more
of its documentation.
Here are the differences:
=over 4
=item *
You can't create a proxy with C<< ->new >>, only by calling C<< ->proxy >> on an existing logger or proxy.
=item *
C<set_debug> will set a value for the proxy; if none is set, C<get_debug> will check the parent's setting; C<clear_debug> will clear any set value on this proxy
=item *
C<log_debug> messages will be redispatched to C<log> (to the 'debug' logging level) to prevent parent loggers from dropping them due to C<debug> setting differences
=back
=head1 AUTHOR
Ricardo SIGNES <rjbs@cpan.org>
=head1 COPYRIGHT AND LICENSE
This software is copyright (c) 2016 by Ricardo SIGNES.
This is free software; you can redistribute it and/or modify it under
the same terms as the Perl 5 programming language system itself.
=cut
|