File: Interface.pm

package info (click to toggle)
libmoosex-logdispatch-perl 1.2002-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 228 kB
  • sloc: perl: 1,858; makefile: 8
file content (19 lines) | stat: -rw-r--r-- 201 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package # Hide from pause
  MooseX::LogDispatch::Interface;
use Moose::Role;

requires qw{
  log
  debug
  info
  notice
  warning
  error
  critical
  alert
  emergency
};

no Moose::Role;
1;
__END__