| 167 | } |
| 168 | |
| 169 | void log_msg(Severity severity, const char* format, ...) { |
| 170 | va_list args; |
| 171 | va_start(args, format); |
| 172 | |
| 173 | vlog_process_msg(severity, "fdbmonitor", format, args); |
| 174 | |
| 175 | va_end(args); |
| 176 | } |
| 177 | |
| 178 | void log_process_msg(Severity severity, const char* process, const char* format, ...) { |
| 179 | va_list args; |
no test coverage detected