Madam has asked for the wisdom of the Perl Monks concerning the following question:

Dear Perl Monks, I want to hide or redirect some of the messages on the screen.This is coming due to the Internal API's but i dont want it show on my screen.Is there any way(perl Module) to hide(not to show on the screen) or redirect INFO messages explcitily? Thanks, Madam

Replies are listed 'Best First'.
Re: redirecting the messages
by planetscape (Chancellor) on Feb 08, 2006 at 05:13 UTC
Re: redirecting the messages
by spiritway (Vicar) on Feb 08, 2006 at 05:15 UTC

    How you do this depends on your OS. In Linux, you can send output to /dev/null. If you're on Windows, you might try redirecting your output to a file (perl foo.pl > dump.fil). Then you could either delete it or use it to see what the messages were.