commit 088c85d

uint  ·  2026-01-31 01:43:52 +0000 UTC
parent 70f86ba
log max_clients on config_load
1 files changed,  +3, -0
+3, -0
 1@@ -201,6 +201,7 @@ log:
 2 
 3 	char port[8];
 4 	char tmo[16];
 5+	char maxc[16];
 6 
 7 	LOG(true, "CONF", "Config File        %s", path);
 8 	LOG(true, "CONF", "Media Directory    %s", media_dir);
 9@@ -211,6 +212,8 @@ log:
10 	LOG(true, "CONF", "CORS origins       %s", cors_origin);
11 	snprintf(tmo, sizeof(tmo), "%d", http_io_timeout);
12 	LOG(true, "CONF", "HTTP IO Timeout    %s", tmo);
13+	snprintf(maxc, sizeof(maxc), "%d", max_clients);
14+	LOG(true, "CONF", "Max Clients        %s", maxc);
15 
16 	return;
17 }