Skip to contents

Add this to your server function to diagnose why observers might not be firing

Usage

diagnose_registry(registry, session)

Arguments

registry

The linkeR registry object

session

The Shiny session object

Examples

if (FALSE) { # \dontrun{
server <- function(input, output, session) {
  registry <- create_link_registry(session)
  
  # Register your components...
  
  # Add diagnostics
  diagnose_registry(registry, session)
}
} # }