Handle pipeline.discover event. */
| 229 | |
| 230 | /* Handle pipeline.discover event. */ |
| 231 | static void on_discover(const char *line) { |
| 232 | char files[CBM_SZ_32] = {0}; |
| 233 | if (extract_kv(line, "files", files, (int)sizeof(files))) { |
| 234 | (void)fprintf(s_out, " Discovering files (%s found)\n", files); |
| 235 | } else { |
| 236 | (void)fprintf(s_out, " Discovering files...\n"); |
| 237 | } |
| 238 | (void)fflush(s_out); |
| 239 | } |
| 240 | |
| 241 | /* Handle pipeline.route event. */ |
| 242 | static void on_route(const char *line) { |
nothing calls this directly
no test coverage detected