summaryrefslogtreecommitdiff
path: root/unoxml
diff options
context:
space:
mode:
Diffstat (limited to 'unoxml')
-rw-r--r--unoxml/qa/unit/domtest.cxx6
-rw-r--r--unoxml/source/dom/node.cxx2
2 files changed, 5 insertions, 3 deletions
diff --git a/unoxml/qa/unit/domtest.cxx b/unoxml/qa/unit/domtest.cxx
index d793e2026b9a..9a03f66a8c1c 100644
--- a/unoxml/qa/unit/domtest.cxx
+++ b/unoxml/qa/unit/domtest.cxx
@@ -122,8 +122,10 @@ struct DocumentHandler
// XFastContextHandler
virtual void SAL_CALL startFastElement( ::sal_Int32 Element, const uno::Reference< xml::sax::XFastAttributeList >& ) throw (xml::sax::SAXException, uno::RuntimeException) SAL_OVERRIDE
{
- OSL_TRACE("Seen element: %c with namespace 0x%x",
- Element & 0xFFFF, Element & 0xFFFF0000);
+ SAL_INFO(
+ "unoxml",
+ "Seen element: " << (Element & 0xFFFF) << " with namespace "
+ << (Element & 0xFFFF0000));
}
virtual void SAL_CALL startUnknownElement( const OUString& , const OUString& , const uno::Reference< xml::sax::XFastAttributeList >& ) throw (xml::sax::SAXException, uno::RuntimeException) SAL_OVERRIDE
diff --git a/unoxml/source/dom/node.cxx b/unoxml/source/dom/node.cxx
index eb9d73d06678..4fbba7c6318d 100644
--- a/unoxml/source/dom/node.cxx
+++ b/unoxml/source/dom/node.cxx
@@ -98,7 +98,7 @@ namespace DOM
io_rContext.maNamespaces.back().push_back(aNS);
- OSL_TRACE("Added with token 0x%x", aIter->second);
+ SAL_INFO("unoxml", "Added with token " << aIter->second);
}
}
}