File: Parent.pm

package info (click to toggle)
liblog-dispatchouli-perl 2.005-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 176 kB
  • sloc: perl: 489; makefile: 2
file content (12 lines) | stat: -rw-r--r-- 233 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
use strict;
package DDR::Parent;
use base 'Log::Dispatchouli::Global';
sub logger_globref { no warnings 'once'; \*Logger }
sub default_logger_args {
  return {
    ident   => __PACKAGE__,
    log_pid => 0,
    to_self => 1,
  }
}
1;