use STDERR not STDOUT for debugging the perl libdir probe
Chris Nehren [Sun, 19 Aug 2012 03:56:55 +0000 (03:56 +0000)]
lib/System/Introspector/Probe/LibDirs/Perl.pm

index b88b689..f242af1 100644 (file)
@@ -13,7 +13,7 @@ has root => (
     default => sub { '/' },
 );
 
-sub _log { shift; printf "[%s] %s\n", scalar(localtime), join '', @_ }
+sub _log { shift; warn sprintf "[%s] %s\n", scalar(localtime), join '', @_ }
 
 sub gather {
     my ($self) = @_;