Print progress bar in index module

This commit is contained in:
2021-11-07 13:20:05 -05:00
parent 414f65346c
commit b17b9439df
6 changed files with 5 additions and 5 deletions

View File

@@ -177,7 +177,7 @@ static void *tpool_worker(void *arg) {
}
void tpool_wait(tpool_t *pool) {
LOG_INFO("tpool.c", "Waiting for worker threads to finish")
LOG_DEBUG("tpool.c", "Waiting for worker threads to finish")
pthread_mutex_lock(&(pool->work_mutex));
while (TRUE) {
if (pool->done_cnt < pool->work_cnt) {