Export logging events in R shiny

Hi all,

Can we export logging units in R shiny. Below is the sample I tried.

set_logging()
shinyApp(
  ui = fluidPage(
    log_init(),
    selectInput("number", "Select number", choices = c(1, 2, 3), selected = 2)
  ),
  server = function(input, output) {
    set_logging_session()
    log_value(NROW(mtcars))
    observe({
      log_value(input$number)
    })
  }
)

This topic was automatically closed 54 days after the last reply. New replies are no longer allowed.