log_always
Logs unconditionally.
Target
Signature
1log_always(...)Logs unconditionally.
log_always is a global callable that can be used wherever an expression is valid. log_always 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_always('startup')The example keeps process or logging behavior explicit so failures are visible.