| 60 | } |
| 61 | |
| 62 | std::string LogPolicy::GetLevels() |
| 63 | { |
| 64 | // Keep in sync with LogLevel definition |
| 65 | return "NONE, ERROR, WARNING, INFO, DEBUG"; |
| 66 | } |
| 67 | |
| 68 | Log::Log(LogLevel level_, std::ostream &ostream) : level(level_), stream(ostream) { Init(); } |
| 69 |
nothing calls this directly
no outgoing calls
no test coverage detected