| 38 | LogStateSaver() : old_min_log_level_(GetMinLogLevel()) {} |
| 39 | |
| 40 | ~LogStateSaver() { |
| 41 | SetMinLogLevel(old_min_log_level_); |
| 42 | SetLogAssertHandler(NULL); |
| 43 | log_sink_call_count = 0; |
| 44 | } |
| 45 | |
| 46 | private: |
| 47 | int old_min_log_level_; |
nothing calls this directly
no test coverage detected