log_setDestination

Sets log destination.

Target function

Signature

1log_setDestination(level::integer, ...)

Sets log destination.

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

Parameters

level
Required value of type integer. Supply level positionally unless the signature shows a keyword form.
...
Additional values may be supplied after the earlier arguments.

Examples

Basic call

1log_setDestination(log_level_detail, log_destination_console)
The example keeps process or logging behavior explicit so failures are visible.