File: Log.pm

package info (click to toggle)
libcatalyst-action-rest-perl 1.21-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, forky, sid, trixie
  • size: 476 kB
  • sloc: perl: 1,750; makefile: 2
file content (21 lines) | stat: -rw-r--r-- 271 bytes parent folder | download | duplicates (9)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
package Test::Catalyst::Log;

use strict;
use warnings;

sub new {
    bless {}, __PACKAGE__;
}

sub is_debug { 0 }
sub debug { }
sub is_info { 0 }
sub info { }
sub is_warn { 0 }
sub warn : method { }
sub is_error { 0 }
sub error { }
sub is_fatal { 0 }
sub fatal { }

1;