pr_set_debug | R Documentation |
By default, error messages from your plumber routes are hidden, but can be
turned on by setting the debug value to TRUE
using this setter.
pr_set_debug(pr, debug = FALSE)
pr |
A Plumber API. Note: The supplied Plumber API object will also be updated in place as well as returned by the function. |
debug |
|
The Plumber router with the new debug setting.
## Not run:
# Will contain the original error message
pr() %>%
pr_set_debug(TRUE) %>%
pr_get("/boom", function() stop("boom")) %>%
pr_run()
# Will NOT contain an error message
pr() %>%
pr_set_debug(FALSE) %>%
pr_get("/boom", function() stop("boom")) %>%
pr_run()
## End(Not run)
# Setting within a plumber file
#* @plumber
function(pr) {
pr %>%
pr_set_debug(TRUE)
}
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.