Subject: | Chainsaw compatibility is broken. |
Log::Log4perl::Layout::XMLLayout
Because of the first line
<?xml version = "1.0" encoding = "iso8859-1"?>
Chainsaw refuses to read the file
And there is no convenient way to remove this line
The brutal force work around is to remove the following lines from the .pm file
if(!($self->{'enc_set'})) {
$xml_code=join("\n", qq(<?xml version = "1.0" encoding = "$self->{'encoding'}"?>)
, $xml_code);
$self->{'enc_set'}=1;