I'm looking for a way to redirect output in a groovy script to stderr:
catch(Exception e) {
println "Want this to go to stderr"
}
|
|
|
|
|
|
|
Just off the top of my head couldn't you do a bit of self-wiring:
but that is a bit manual |
||
|
|
|
|
Groovy has access to the JRE:
Although there may be a more Groovy-fied way... |
||
|
|
|
If you just want something shorter to type, here are two options. First, you can import java.lang.System as anything you like, specifically something shorter like "sys":
Second, you can assign the System.err stream to a variable and use that variable from then on as an alias for System.err, like:
This has the possible advantage that all the functions of System.err are accessible so you don't have to wire up each one individually (e.g. err.print, err.println, etc.). Hopefully there is a standard Groovy way, because idiosyncratic renaming can be confusing to people who read your code. |
|||
|
|