vote up 0 vote down star

Is there a way to output debug messages in Perl that are not piped? I have a Perl script that I use in a pipe but I really want to print some diagnostic information to the screen instead of to the pipe.

flag

2 Answers

vote up 9 vote down check

Are you piping both stdout and stderr? If not, write to the one you're not piping :)

e.g.

print STDERR "This goes to standard error";
print STDOUT "This goes to standard output";

(If you don't provide a handle, STDOUT is the default of course - unless you've asked Perl to use a different default handle...)

link|flag
STDOUT is only the default if you have not used select to tell Perl a different handle should be the default. It is the default default if you will. – Chas. Owens Apr 14 at 8:20
Thanks Chas - have edited answer. – Jon Skeet Apr 14 at 12:37
You forgot the semi-colons, this isn't python. – james2vegas Apr 14 at 15:42
Thanks semi-colons duly added. – Jon Skeet Apr 14 at 16:55
vote up 3 vote down

Unless you have said something like 2>&1 on the commandline, STDERR should show up on the screen. You can write to STDERR like Jon Skeet suggests or you can use the warn function.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.