I'm curious if I can toggle between printing to STDOUT or STDERR based on some value or inline expression (without using an if statement).
print ($someFlag ? STDOUT : STDERR) "hello world!"
Obviously, that syntax doesn't work.
|
I'm curious if I can toggle between printing to STDOUT or STDERR based on some value or inline expression (without using an if statement).
Obviously, that syntax doesn't work. |
||||
|
|
|
I think this will do what you want:
A similar example can be seen in the documentation for print. Use typeglobs so that it will run under Another strategy is to define your own printing function that will behave differently, depending on the value of |
||||
|
|
|
Do you need to evaluate for each call to If not, would this work for you:
|
|||
|
|
One mechanism is to 'select' the output descriptor (file channel).
|
|||||
|
|
I wrap this sort of thing in a method that returns the appropriate filehandle:
You might want to look at how IO::Interactive. However, if you're doing this for logging, I recommend Log::Log4perl since you can not only change where the output goes, but can send the output to multiple places, set priorities for the message, and a lot more. And, you can change all of that without changing the source. |
|||
|
|