Writes the task log for the given task
taskLog(taskId, account = NULL, server = NULL, output = NULL)
Task Id
Uniquely identify a remote server with either your
user account
, the server
name, or both. If neither are supplied, and
there are multiple options, you'll be prompted to pick one.
Use accounts()
to see the full list of available options.
Where to write output. Valid values are NULL
or stderr
This function works only with shinyapps.io and posit.cloud.
if (FALSE) { # \dontrun{
# write task log to stdout
taskLog(12345)
# write task log to stderr
taskLog(12345, output="stderr")
} # }