| 14 | namespace Log { |
| 15 | |
| 16 | EventFilter::Ptr EventFilter::Create(const uint32_t loglvl) |
| 17 | { |
| 18 | return Ptr(new EventFilter(loglvl)); |
| 19 | } |
| 20 | |
| 21 | |
| 22 | EventFilter::EventFilter(const uint32_t loglvl) noexcept |
nothing calls this directly
no outgoing calls
no test coverage detected