Re: POE debugging without STDOUT/STDERR ?
[email protected] (Olivier Mengué)
| Newsgroups | perl.poe |
|---|---|
| Message-ID | <[email protected]> |
Le 22 septembre 2009 11:42, Olivier Mengué <[email protected]> a écrit : > How can I use POE's debugging features without access to STDOUT/STDERR? > This was obvious: close STDOUT; close STDERR; open STDOUT, '>>:utf8', "${log_file}.out"; print STDOUT "----------------------------------\n"; open STDERR, '>>:utf8', "${log_file}.err"; print STDERR "----------------------------------\n";