Append a message to the currently being written entry. * * Requires that an entry has been started using log_begin() */
| 239 | * Requires that an entry has been started using log_begin() |
| 240 | */ |
| 241 | int log_vprintf(const char *fmt, va_list args) |
| 242 | { |
| 243 | int ret; |
| 244 | |
| 245 | printf_spec_t ps = { |
| 246 | log_printf_str_write, |
| 247 | log_printf_wstr_write, |
| 248 | NULL |
| 249 | }; |
| 250 | |
| 251 | ret = printf_core(fmt, &ps, args); |
| 252 | |
| 253 | return ret; |
| 254 | } |
| 255 | |
| 256 | /** Append a message to the currently being written entry. |
| 257 | * |
no test coverage detected