diff options
| -rw-r--r-- | httpd.c | 6 |
1 files changed, 3 insertions, 3 deletions
| @@ -295,14 +295,14 @@ static void *job_thread(void *arg) | |||
| 295 | { | 295 | { |
| 296 | long long pid = (long long)arg; | 296 | long long pid = (long long)arg; |
| 297 | 297 | ||
| 298 | srv_debug(0, xs_fmt("job thread %ld started", pid)); | 298 | srv_debug(1, xs_fmt("job thread %ld started", pid)); |
| 299 | 299 | ||
| 300 | for (;;) { | 300 | for (;;) { |
| 301 | xs *job = NULL; | 301 | xs *job = NULL; |
| 302 | 302 | ||
| 303 | job_wait(&job); | 303 | job_wait(&job); |
| 304 | 304 | ||
| 305 | srv_debug(0, xs_fmt("job thread %ld wake up", pid)); | 305 | srv_debug(1, xs_fmt("job thread %ld wake up", pid)); |
| 306 | 306 | ||
| 307 | if (job == NULL) | 307 | if (job == NULL) |
| 308 | break; | 308 | break; |
| @@ -322,7 +322,7 @@ static void *job_thread(void *arg) | |||
| 322 | } | 322 | } |
| 323 | } | 323 | } |
| 324 | 324 | ||
| 325 | srv_debug(0, xs_fmt("job thread %ld stopped", pid)); | 325 | srv_debug(1, xs_fmt("job thread %ld stopped", pid)); |
| 326 | 326 | ||
| 327 | return NULL; | 327 | return NULL; |
| 328 | } | 328 | } |