options( rlang_backtrace_on_error_report = "full" ) f <- function(do = stop) g(do) g <- function(do) h(do) h <- function(do) do("foo")
f()
rlang::global_entrace()
f()
f(warning)
options( rlang_backtrace_on_warning_report = "full" )
f(warning)
rlang::last_warnings()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.