| 3 | namespace pmon::util::log |
| 4 | { |
| 5 | CopyDriver::CopyDriver(std::shared_ptr<IChannel> pChannel) |
| 6 | : |
| 7 | pChannel_{ std::move(pChannel) } |
| 8 | {} |
| 9 | void CopyDriver::Submit(const Entry& e) |
| 10 | { |
| 11 | pChannel_->Submit(e); |
nothing calls this directly
no outgoing calls
no test coverage detected