Back trace the expressions evaluated when an error was caught
Back trace the expressions evaluated when an error was caught
backtrace(future, envir = parent.frame(), ...)
future |
A future with a caught error. |
envir |
the environment where to locate the future. |
... |
Not used. |
A list with the future's call stack that led up to the error.
my_log <- function(x) log(x) foo <- function(...) my_log(...) f <- future({ foo("a") }) res <- tryCatch({ v <- value(f) }, error = function(ex) { t <- backtrace(f) print(t) })
Please choose more modern alternatives, such as Google Chrome or Mozilla Firefox.