add Class::Load to dev prereqs
[scpubgit/Object-Remote.git] / lib / Object / Remote / Logging / TestLogger.pm
CommitLineData
052976d4 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
8c352906 6package Object::Remote::Logging::TestLogger;
abef6e5b 7
8use base qw ( Object::Remote::Logging::Logger );
9
10#don't need to output anything
11sub _output { }
12
131;