| 388 | } |
| 389 | |
| 390 | void CompatLogger::ExternalCommandHandler(const String& command, const std::vector<String>& arguments) |
| 391 | { |
| 392 | std::ostringstream msgbuf; |
| 393 | msgbuf << "EXTERNAL COMMAND: " |
| 394 | << command << ";" |
| 395 | << boost::algorithm::join(arguments, ";") |
| 396 | << ""; |
| 397 | |
| 398 | { |
| 399 | ObjectLock oLock(this); |
| 400 | WriteLine(msgbuf.str()); |
| 401 | Flush(); |
| 402 | } |
| 403 | } |
| 404 | |
| 405 | void CompatLogger::EventCommandHandler(const Checkable::Ptr& checkable) |
| 406 | { |
nothing calls this directly
no outgoing calls
no test coverage detected