diff --git a/news/index.html b/news/index.html index 33f0c9c5..434a1583 100644 --- a/news/index.html +++ b/news/index.html @@ -56,6 +56,7 @@
Added support for graphic devices provided by ragg and svglite (@thomasp85 #964)
parse_rds()
, parse_feather()
, and parse_parquet()
no longer writes data to disk during parsing (@thomasp85, #942)
Returning error messages are now turned off by default rather than being turned on if running interactively and turned off if not (@thomasp85, #962)
CRAN release: 2024-03-25
diff --git a/pkgdown.yml b/pkgdown.yml index de53ae12..30735597 100644 --- a/pkgdown.yml +++ b/pkgdown.yml @@ -13,7 +13,7 @@ articles: routing-and-input: routing-and-input.html security: security.html tips-and-tricks: tips-and-tricks.html -last_built: 2025-01-23T14:56Z +last_built: 2025-01-27T20:41Z urls: reference: https://www.rplumber.io/reference article: https://www.rplumber.io/articles diff --git a/reference/Plumber.html b/reference/Plumber.html index c64de27b..4b309c9f 100644 --- a/reference/Plumber.html +++ b/reference/Plumber.html @@ -222,7 +222,7 @@$run()
time. See $setDebug()
for more details.
+If TRUE
, it will provide more insight into your API errors. Using this value will only last for the duration of the run. If a $setDebug()
has not been called, debug
will default to FALSE
at $run()
time. See $setDebug()
for more details.
swaggerCallback
setDebug()
Set debug value to include error messages.
See also: $getDebug()
and pr_set_debug()
getDebug()
Retrieve the debug
value. If it has never been set, the result of interactive()
will be used.
Retrieve the debug
value. If it has never been set, it will return FALSE
.
See also: $getDebug()
and pr_set_debug()
Plumber$getDebug()
To hide any error messages in production, set the debug value to FALSE
.
-The debug
value is enabled by default for interactive()
sessions.
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.