feat: add option to set where pipeline logfiles go

This commit is contained in:
2024-08-06 20:05:20 +02:00
parent 2ebbc86799
commit 6c1102db43
5 changed files with 48 additions and 26 deletions
+1 -1
View File
@@ -42,7 +42,7 @@ static threadpool_work* threadpool_work_pop(threadpool* pool) {
return work;
}
static void* threadpool_worker(void *arg) {
static void* threadpool_worker(void* arg) {
log_trace("threadpool worker spawned");
threadpool* pool = arg;
threadpool_work* work;