summaryrefslogtreecommitdiff
path: root/package/source/manifest
diff options
context:
space:
mode:
authorStephan Bergmann <sbergman@redhat.com>2013-03-15 18:51:07 +0100
committerStephan Bergmann <sbergman@redhat.com>2013-03-15 18:51:07 +0100
commit27d02a348b987de0f1a9c2142724a46a03730cf5 (patch)
tree4406b8f85318c8bdb2d3b7fb4dc48611cd95c1df /package/source/manifest
parent29c49b37048e550f4ba1d6af21c118c6b96a9288 (diff)
Improve debug messages
Some of those SAL_WARNs might actually better be SAL_INFOs; please change if they hit too often. Change-Id: I2a3b9bd485586b7878194f84bc734b54ce69bc06
Diffstat (limited to 'package/source/manifest')
-rw-r--r--package/source/manifest/ManifestReader.cxx9
1 files changed, 6 insertions, 3 deletions
diff --git a/package/source/manifest/ManifestReader.cxx b/package/source/manifest/ManifestReader.cxx
index bba764a47147..feac40c72f8b 100644
--- a/package/source/manifest/ManifestReader.cxx
+++ b/package/source/manifest/ManifestReader.cxx
@@ -67,14 +67,17 @@ Sequence< Sequence< PropertyValue > > SAL_CALL ManifestReader::readManifestSeque
while( aIter != aEnd )
*pSequence++ = (*aIter++);
}
- catch (SAXParseException& )
+ catch (SAXParseException& e)
{
+ SAL_WARN("package", "ignoring SAXParseException " + e.Message);
}
- catch (SAXException& )
+ catch (SAXException& e)
{
+ SAL_WARN("package", "ignoring SAXException " + e.Message);
}
- catch (IOException& )
+ catch (IOException& e)
{
+ SAL_WARN("package", "ignoring IOException " + e.Message);
}
xParser->setDocumentHandler ( Reference < XDocumentHandler > () );
return aManifestSequence;