File: TestLogger.pm

package info (click to toggle)
libobject-remote-perl 0.003004-1
  • links: PTS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 408 kB
  • ctags: 221
  • sloc: perl: 2,365; makefile: 2
file content (13 lines) | stat: -rw-r--r-- 353 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#During testing of Object::Remote this logger is connected
#to the router and runs at trace level but does not output anything.
#This lets the logging codeblocks get executed and included
#in the testing.

package Object::Remote::Logging::TestLogger;

use base qw ( Object::Remote::Logging::Logger );

#don't need to output anything
sub _output { }

1;