We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
purrr:::capture_output()
conditionMessage()
$message
> purrr:::capture_output function (code) { warnings <- character() wHandler <- function(w) { warnings <<- c(warnings, w$message) invokeRestart("muffleWarning") } messages <- character() mHandler <- function(m) { messages <<- c(messages, m$message) invokeRestart("muffleMessage") }
To give things like rlang:::conditionMessage.rlang_error a chance to run correctly
rlang:::conditionMessage.rlang_error
The text was updated successfully, but these errors were encountered:
Use conditionMessage()
00cdddb
Fixes #1010
Use conditionMessage() (#1012)
d1b8464
Successfully merging a pull request may close this issue.
To give things like
rlang:::conditionMessage.rlang_error
a chance to run correctlyThe text was updated successfully, but these errors were encountered: