summaryrefslogtreecommitdiff
path: root/httpd.c
diff options
context:
space:
mode:
authordefault <nobody@localhost>2023-02-07 10:29:06 +0100
committerdefault <nobody@localhost>2023-02-07 10:29:06 +0100
commit3ddf76c2aa09ed3e05fbe04c659d80c38a96af17 (patch)
tree9e4568e8895484be17a3f366ff1bd9daede299d6 /httpd.c
parent67f2d4318d76b305ab98a48ff48b47e2e87126c2 (diff)
New function send_to_inbox_raw().
Diffstat (limited to 'httpd.c')
-rw-r--r--httpd.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/httpd.c b/httpd.c
index 5cc6694..f747adc 100644
--- a/httpd.c
+++ b/httpd.c
@@ -295,14 +295,14 @@ static void *job_thread(void *arg)
{
long long pid = (long long)arg;
- srv_debug(1, xs_fmt("job thread %ld started", pid));
+ srv_debug(0, xs_fmt("job thread %ld started", pid));
for (;;) {
xs *job = NULL;
job_wait(&job);
- srv_debug(1, xs_fmt("job thread %ld wake up", pid));
+ srv_debug(0, xs_fmt("job thread %ld wake up", pid));
if (job == NULL)
break;
@@ -322,7 +322,7 @@ static void *job_thread(void *arg)
}
}
- srv_debug(1, xs_fmt("job thread %ld stopped", pid));
+ srv_debug(0, xs_fmt("job thread %ld stopped", pid));
return NULL;
}