diff options
author | default <nobody@localhost> | 2023-02-07 20:25:18 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-02-07 20:25:18 +0100 |
commit | 09a4423efc7532b22e31d2148ecc9b4732798630 (patch) | |
tree | dc498b4aa253e6f684e282398c30740dea16a260 /httpd.c | |
parent | 8ff5db2c23c064dd61b80c50e5c91bebd208bf91 (diff) |
Debug level tweaks.
Diffstat (limited to 'httpd.c')
-rw-r--r-- | httpd.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -295,14 +295,14 @@ static void *job_thread(void *arg) { long long pid = (long long)arg; - srv_debug(0, xs_fmt("job thread %ld started", pid)); + srv_debug(1, xs_fmt("job thread %ld started", pid)); for (;;) { xs *job = NULL; job_wait(&job); - srv_debug(0, xs_fmt("job thread %ld wake up", pid)); + srv_debug(1, xs_fmt("job thread %ld wake up", pid)); if (job == NULL) break; @@ -322,7 +322,7 @@ static void *job_thread(void *arg) } } - srv_debug(0, xs_fmt("job thread %ld stopped", pid)); + srv_debug(1, xs_fmt("job thread %ld stopped", pid)); return NULL; } |