traveler,
Check out perldoc perldiag. Remember that by using the warnings pragma instead of the -w command line option that you can toggle settings on a per scope basis.
#!/usr/bin/perl
use strict;
use warnings;
no warnings 'uninitialized';
my $foo;
print "cool daddy-o\n" if $foo eq 'bar';