When using XML::Simple
, I always get the warning
could not find ParserDetails.ini in /usr/lib/perl5/vendor_perl/5.8.8/XML/SAX
I would like do do something like
{
no warning qw(insert_your_magic_here);
my $hash_ref = XMLin('my_file.xml')
}
I red perldoc about warning http://perldoc.perl.org/warnings.html and found a 'Cathegory hiearchy' but I do not know in which category is this warning.
Do you know it?
May you know what are those ParserDetail intented for?