Hi Joe and other Shiny developers,
I have a question about how to export errors for Shiny app. Let's say I have an app doing mixed effect model, and drawing the fitted population mean plot in Shiny. When there are errors regarding the model fit (e.g., model cannot converge), we see relevant error or warning messages in R console.
However, when it comes to Shiny, there is no plot generated. We will have to go back to R console in order to check if there is something wrong, which is totally fine for developers. But for users, they may be very confused with regard to why no plot showing up in Shiny.
Therefore, is there a good way to export some error/warning messages?
(so generally, I want some 'important' error/warning messages, not ALL of them (printed in R console); In addition, we can either export the messages in Shiny or store them as a log in a temporary directory).
Any insight will be highly appreciated! Thank you.