You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When run, this app immediately errors (as intended). The console looks like this:
Listening on http://127.0.0.1:7821
Warning: Error in observe: boom
4: runApp [/Users/jcheng/Development/rstudio/shiny3/R/runapp.R#388]
3: print.shiny.appobj [/Users/jcheng/Development/rstudio/shiny3/R/shinyapp.R#565]
1: source
Note that no useful information is present about where the error is coming from. If you change observeEvent(TRUE, { to observe({, then the useful information appears (the line starting with 52:):
The problem has to do with stack trace stripping; if you set options(shiny.fullstacktrace=TRUE) you'll see that the info is all there, just getting pruned out in the observeEvent case because it's missing a ..stacktraceon.. somewhere.
System details
Browser Version:
Output of `sessionInfo()`: NA
Example application or steps to reproduce the problem
Describe the problem in detail
When run, this app immediately errors (as intended). The console looks like this:
Note that no useful information is present about where the error is coming from. If you change
observeEvent(TRUE, {
toobserve({
, then the useful information appears (the line starting with52:
):The text was updated successfully, but these errors were encountered: