- or download this
my $LoggerClass = $self->logger_class();
- or download this
sub logger_class
{
ref(shift) . '::Debug';
}
- or download this
sub logger_class
{
...
# done - return it.
$self->{__PACKAGE__ . ':logger_class'};
}
- or download this
# in some other package...
sub logger_class
...
my $self = shift;
$self->SUPER::logger_class('Some::Shared::Package::Debug');
}