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
deprecate_stop()
call
Probably related to #131
It seems like the function that caused the error is never actually shown in the error message. I was expecting to see Error in fn(): here.
Error in fn():
Is the env argument enough? Or do we need call separately?
env
fn <- function() { lifecycle::deprecate_stop( when = "1.0.0", what = I("Supplying `...` without names"), details = "foo" ) } fn() #> Error: #> ! Supplying `...` without names was deprecated in <NA> 1.0.0 and is now #> defunct. #> ℹ foo
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Probably related to #131
It seems like the function that caused the error is never actually shown in the error message. I was expecting to see
Error in fn():
here.Is the
env
argument enough? Or do we needcall
separately?The text was updated successfully, but these errors were encountered: