bwlewis/doRedis

.verbose=TRUE: One use of message(), everything else via cat()

Opened this issue · 0 comments

Hello, while inspecting what the different doNnn packages do with foreach(..., .verbose = TRUE), I spotted that doRedis uses message() in one case:

if(obj$verbose) message("Submitting task(s) ", j, ":", k)

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.