We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 22d6b5d commit 3ca4634Copy full SHA for 3ca4634
src/lib/lwan-thread.c
@@ -1177,12 +1177,12 @@ static void *thread_io_loop(void *data)
1177
struct timeout_queue tq;
1178
1179
if (t->cpu == UINT_MAX) {
1180
- lwan_status_info("Worker thread #%zd starting",
1181
- t - t->lwan->thread.threads + 1);
+ lwan_status_debug("Worker thread #%zd starting",
+ t - t->lwan->thread.threads + 1);
1182
} else {
1183
- lwan_status_info("Worker thread #%zd starting on CPU %d",
1184
- t - t->lwan->thread.threads + 1,
1185
- t->cpu);
+ lwan_status_debug("Worker thread #%zd starting on CPU %d",
+ t - t->lwan->thread.threads + 1,
+ t->cpu);
1186
}
1187
1188
lwan_set_thread_name("worker");
0 commit comments