log max_connections on startup

This commit is contained in:
Peter Bieringer
2025-12-17 08:41:01 +01:00
parent af9ead9188
commit 61136c1e7a

View File

@@ -339,6 +339,7 @@ def serve(configuration: config.Configuration,
# Fallback to busy waiting. (select(...) blocks SIGINT on Windows.)
select_timeout = 1.0
max_connections: int = configuration.get("server", "max_connections")
logger.info("Maximum parallel connections: %d", max_connections)
logger.info("Radicale server ready")
logger.debug("TRACE: Radicale server ready ('logging/trace_on_debug' is active)")
logger.debug("TRACE/SERVER: Radicale server ready ('logging/trace_on_debug' is active - either with 'SERVER' or empty filter)")