-
Help
DescriptionIf I run a pipeline with no parallel processing, the output of functions is printed to the console. For example, running a tar_options_set(controller = crew_controller_local(workers = 2)) there is no output. I tried looking into the reference pages for |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment
-
Ah, figured it out. For anyone else who might search for this: In argument # Set target options:
tar_option_set(
controller = crew_controller_local(workers = 2, local_log_directory = "output/logs")
) |
Beta Was this translation helpful? Give feedback.
Ah, figured it out. For anyone else who might search for this:
In argument
local_log_directory
tocrew_controller_local()
you can specify where to output stdout and stderror of crew workers. E.g.: