Improved warning on bad descriptor

This commit is contained in:
Joakim Erdfelt 2022-10-17 15:21:19 -05:00
parent 6ab8aa8d30
commit 02142c2e30
No known key found for this signature in database
GPG Key ID: 2D0E1FB8FE4B68B4
1 changed files with 1 additions and 1 deletions

View File

@ -51,7 +51,7 @@ public abstract class Descriptor
}
catch (SAXException | IOException e)
{
LOG.warn("Unable to parse {}", _xml, e);
LOG.warn("Unable to parse {}", _xml.getURI(), e);
throw e;
}
}