-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WISH: Make it possible to stack stderr (aka "message") sinks #55
Comments
Asked about this in R-devel thread 'sink(con, type = "message"): what is the reason why 'message' sinks cannot be stacked?', 2018-03-20 (https://stat.ethz.ch/pipermail/r-devel/2018-March/075734.html) |
…ink/capture stderr for future.clustermq
See R-devel thread 'Bug report: parLapply with capture.output(type="message") produces an error' on 2023-10-05 (https://stat.ethz.ch/pipermail/r-devel/2023-October/082936.html) for an example where the lack of stackable "message" sinks is in play. |
Issue
In
?sink
we can read:This prevents us from doing things such as:
The latter two lines are outputted to the message output, which reopened, because the inner capture resets it to the default when it closes it's redirect.
This is a problem, because it prevents all of us from capturing/sinking standard error output ("messages"). If we attempt to do it, we must be careful to make sure there is not already an active "message" sink, otherwise we will destroy the active one. This makes it very complicated to capture stderr in package code. This is basically also what
?sink
tells us:Actions
Try to find out why the current limitation exists. Is it deliberate - an active design decision - and if so, then exactly why? Or is it just because no one got around to implement a stacked version for the "message" streams?
The text was updated successfully, but these errors were encountered: