Shiny: What is the option setting to display in the console the messages between server and ui

后端 未结 2 1553
囚心锁ツ
囚心锁ツ 2020-12-23 15:14

I remember having used an option setting that enable to print in the R console the messages between the server and ui while a shiny app is running. This option is really use

相关标签:
2条回答
  • 2020-12-23 15:22

    I finally found it :

    options(shiny.trace=TRUE)
    

    Before running the app. I find it extremely useful to understand what is appending. I don't know why it is not more documented.

    0 讨论(0)
  • 2020-12-23 15:31

    R Studio lists a nice summary of R Shiny global options available here

    You may wish to turn both of these on: options(shiny.trace=TRUE) options(shiny.fullstacktrace=TRUE)

    0 讨论(0)
提交回复
热议问题