| 744 | } |
| 745 | |
| 746 | static void log_extract_fail(int pos, uint64_t ms, const char *path) { |
| 747 | if (pos < PP_LOG_THRESH) { |
| 748 | cbm_log_warn("parallel.extract.file.fail", "pos", itoa_log(pos), "elapsed_ms", |
| 749 | itoa_log((int)ms), "path", path); |
| 750 | } |
| 751 | } |
| 752 | |
| 753 | static void log_extract_done(int pos, uint64_t ms, int defs, const char *path) { |
| 754 | if (pos < PP_LOG_THRESH || ms > PP_TIMER_THRESH) { |
no test coverage detected