v.25.9New Feature
Allow for overriding the log level during
New configuration options:logger.startupLevel&logger.shutdownLevelallow for overriding the log level during the startup & shutdown of Clickhouse respectively. #85967 (Lennard Eijsackers).
Why it matters
To provide finer control over logging verbosity during the critical startup and shutdown periods of ClickHouse. This helps users reduce noise or increase detail in logs specifically when the server is starting or stopping, improving log management and troubleshooting.How to use it
Set the desired log level in the ClickHouse configuration file under thelogger.startupLevel and logger.shutdownLevel settings. For example:logger:
startupLevel: warning
shutdownLevel: errorThese settings override the default log levels during startup and shutdown phases respectively.