I am getting this error message after deployment to Shinyapps.io:
`
2020-04-08T08:14:51.170999+00:00 shinyapps[2045921]: Error in value[3L] : Argument 2 must be length 23, not 138
2020-04-08T08:14:51.171001+00:00 shinyapps[2045921]: Calls: local ... tryCatch -> tryCatchList -> tryCatchOne ->
2020-04-08T08:14:51.171002+00:00 shinyapps[2045921]: Execution halted
`
I have tried as much as possible to replicate the package versions locally and I cannot replicate the error on my machine. I am not explicitly calling tryCatch
anywhere in my code. So much is clear to me: somehwere a condition with length 23 is expected but 138 is received.
As I cannot replicate the error locally, it is very difficult to provide a reprex (if I could do that I would have probably solved the issue...), so my question is rather how to "force" the logs to produce a bit more information - like a call stack at least and which line in the code executed which function which apparently called tryCatch
... I have tried options(shiny.fullstacktrace = TRUE)
but no luck.
Sorry for the lack of more clarity - any ideas much appreciated.
Thanks