log_critical

Logs a critical message.

Target function

Signature

1log_critical(...)

Logs a critical message.

log_critical is a global callable that can be used wherever an expression is valid. log_critical interacts with logs or child processes. Quote external arguments carefully and keep process output handling explicit.

Parameters

...
Additional values may be supplied after the earlier arguments.

Examples

Basic call

1log_critical('database unavailable')
The example keeps process or logging behavior explicit so failures are visible.