diff options
author | default <nobody@localhost> | 2023-02-07 08:27:23 +0100 |
---|---|---|
committer | default <nobody@localhost> | 2023-02-07 08:27:23 +0100 |
commit | b8b0b96cceb0b93963f17dd1ff7c018ae21dafdc (patch) | |
tree | 7c63407bf01538e1c05d4d475c655acdc0cb17ae /httpd.c | |
parent | 967a96b77848638b513ff1bee235d97f58093e86 (diff) |
Changed some debug levels.
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; } |