7d12e524afc26744d4b7c257c4b49c8e45a2b614
[scpubgit/Object-Remote.git] / lib / Object / Remote / Logging / TestLogger.pm
1 #During testing of Object::Remote this logger is connected
2 #to the router and runs at trace level but does not output anything.
3 #This lets the logging codeblocks get executed and included
4 #in the testing.
5
6 package Object::Remote::Logging::TestLogger;
7
8 use base qw ( Object::Remote::Logging::Logger );
9
10 #don't need to output anything
11 sub _output { }
12
13 1;