in reply to Re^2: Why can't some of my modules do log output to a file?
in thread Why can't some of my modules do log output to a file?
I don't really understand what the Useqq option does for me in this instance?
Without Useqq, the module will output some characters literally, which may cause garbled output and could in theory even cause it to appear that certain log messages weren't being output, e.g. when showing a logfile with cat or tail.
$ perl -MData::Dumper -e 'print Dumper("Hello,\rWorld!")' World!';'Hello, $ perl -MData::Dumper -e '$Data::Dumper::Useqq=1; print Dumper("Hello, +\rWorld!")' $VAR1 = "Hello,\rWorld!";
Are you assuming there might be problematic characters in the output causing this unusual behaviour?
Actually, I think those characters are the least likely explanation, but I wanted to have all bases covered. I'd be much more curious about the results of my other suggestions?
|
---|