.verbose=TRUE: One use of message(), everything else via cat()
Opened this issue · 0 comments
HenrikBengtsson commented
Hello, while inspecting what the different doNnn packages do with foreach(..., .verbose = TRUE)
, I spotted that doRedis uses message()
in one case:
Line 452 in bd268ca
whereas cat()
everywhere else. This means some of the verbose output ends up on standard output and some on standard error, and they cannot be captured the same way in R.