| 40 | Logger::Logger() : impl_(new LoggerImpl()) {} |
| 41 | |
| 42 | Logger *Logger::GetInstance() { |
| 43 | static Logger logger; |
| 44 | |
| 45 | return &logger; |
| 46 | } |
| 47 | |
| 48 | void Logger::LogError(const char *format, ...) { |
| 49 | string newFormat("\033[41;37m " + string(format) + " \033[0m"); |
nothing calls this directly
no outgoing calls
no test coverage detected