aboutsummaryrefslogtreecommitdiff
path: root/nitrocli/src/redefine.rs
Commit message (Collapse)AuthorAge
* Emit all output to custom stdio channelsDaniel Mueller2019-01-05
This change continues and concludes the effort of using customizable stdio channels for output of data from the program. It does so by replacing the standard println macro with a custom one that outputs the data to the supplied context's stdout object. Because this object is injected from the main function, it will be possible for tests invoking this function to supply custom Write objects that can buffer this data and make it available for verification purposes.