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