|
reSIProcate/repro
9694
|


Public Member Functions | |
| virtual | ~ReproLogger () |
| virtual bool | operator() (Log::Level level, const Subsystem &subsystem, const Data &appName, const char *file, int line, const Data &message, const Data &messageWithHeaders) |
| return true to also do default logging, false to supress default logging. | |
Definition at line 74 of file ReproRunner.cxx.
| virtual ReproLogger::~ReproLogger | ( | ) | [inline, virtual] |
Definition at line 77 of file ReproRunner.cxx.
{}
| virtual bool ReproLogger::operator() | ( | Log::Level | level, |
| const Subsystem & | subsystem, | ||
| const Data & | appName, | ||
| const char * | file, | ||
| int | line, | ||
| const Data & | message, | ||
| const Data & | messageWithHeaders | ||
| ) | [inline, virtual] |
return true to also do default logging, false to supress default logging.
Implements resip::ExternalLogger.
Definition at line 79 of file ReproRunner.cxx.
{
// Log any errors to the screen
if(level <= Log::Err)
{
resipCout << messageWithHeaders << endl;
}
return true;
}
1.7.5.1