File: Child.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 (11 lines) | stat: -rw-r--r-- 166 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
use strict;
package DDR::Child;
use base 'DDR::Parent';
sub default_logger_args {
  return {
    ident   => __PACKAGE__,
    log_pid => 0,
    to_self => 1,
  }
}
1;