You could edit the module to display which tag was mismatched. The error probably occurred at the last occurrence of that tag before the given line. You could maybe add some meta data to provide an even clearer message.
Update: Well, it appears it's not simple to update the message as it originates in expat, an external library. But that means you'll get a different message if you use a different backend for XML::Simple. For example, if you change
$XML::Simple::PREFERRED_PARSER = 'XML::Parser';
to
$XML::Simple::PREFERRED_PARSER = 'XML::LibXML::SAX';
You get
Entity: line 12: parser error : Opening and ending tag mismatch: ERROR line 8 and ROOT
</ROOT>
^
Entity: line 13: parser error : Premature end of data in tag ERROR line 8
^
Entity: line 13: parser error : Premature end of data in tag ROOT line 3
^
My test shows that XML::Parser is the fastest backend for XML::Simple, but you can switch to a slower parser that gives better error messages for debugging.
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.