| 113 | } |
| 114 | |
| 115 | void Logger::Log(const int log_level, const char *format, va_list args) { |
| 116 | if (impl_->log_func != nullptr) { |
| 117 | impl_->log_func(log_level, format, args); |
| 118 | } |
| 119 | } |
| 120 | |
| 121 | enum PhxPaxosLogLevel { |
| 122 | PhxPaxosLogLevel_None = 0, |
no outgoing calls
no test coverage detected