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

泪湿孤枕 提交于 2019-11-28 17:21:59

问题


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 useful to understand what is happening in the app. However I cant remember the name of that option and can not find it anymore in the documentation. Can someone can tell what is that option ? Thanks!


回答1:


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.




回答2:


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)



来源:https://stackoverflow.com/questions/23002712/shiny-what-is-the-option-setting-to-display-in-the-console-the-messages-between

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!