| 104 | LogMsg::Handler LogMsg::handler_ = LogMsg::defaultHandler; |
| 105 | |
| 106 | LogMsg::LogMsg(LogMsg::Level msgType) : msgType_(msgType) { |
| 107 | } |
| 108 | |
| 109 | LogMsg::~LogMsg() { |
| 110 | if (msgType_ >= level_ && handler_) |
nothing calls this directly
no outgoing calls
no test coverage detected