| 60 | namespace logging { |
| 61 | int GetMinLogLevel() { return g_minloglevel.load(); } |
| 62 | void SetMinLogLevel(int v) { g_minloglevel.store(v); } |
| 63 | } // namespace logging |
| 64 | |
| 65 | void SetMinLogLevel(int v) { logging::SetMinLogLevel(v); } |
no outgoing calls
no test coverage detected