Reputation: 31
When I run render()
command from R console (not use Rstudio), my Rmd document will be rendered without producing any warning or error. But when I render my Rmd document via knit button on Rstudio, my rmarkdown document output following message in render tab and does not show any messages until rendering is finished in several minutes.
Detected output overflow; buffering the next 5000 lines of output
Are there any options to prevent this message in Rstudio?
(I printed many logger::log_info()
message in my script, so 1 option is to change log level of logger, but I think It is preferable for the user to see the messages.)
All of logs produced by logger::log_info()
should shown in Rstudio render tab when rendering.
Upvotes: 0
Views: 1030
Reputation: 301
@ryamy This could be the result of having the future option "future.debug" set to TRUE:
options('future.debug' = TRUE)
Upvotes: 0