summaryrefslogtreecommitdiff
path: root/sax
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2022-10-20 12:47:39 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2022-10-20 13:47:26 +0200
commit40753d5524d07f6bf2fbefdf90ceb3c8bd0910df (patch)
tree55a75db205ea574e5311d9fa32715f42e881043c /sax
parent7896f8b8760bf4823ec8ae05d7c8848e88c4035c (diff)
SAL_WARN->SAL_INFO in sax
This does not provide any value during normal debugging Change-Id: I6797183e64a3e7e90e1cc6b5ecdb92faa53d01d5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/141554 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'sax')
-rw-r--r--sax/source/fastparser/fastparser.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/sax/source/fastparser/fastparser.cxx b/sax/source/fastparser/fastparser.cxx
index daf51f4ea1ee..3d89d048b68f 100644
--- a/sax/source/fastparser/fastparser.cxx
+++ b/sax/source/fastparser/fastparser.cxx
@@ -1321,7 +1321,7 @@ void FastSaxParserImpl::addUnknownElementWithPrefix(const xmlChar **attributes,
xAttributes->addUnknown( aNamespaceURI, aQualifiedName,
OString( XML_CAST( attributes[ i + 3 ] ), attributes[ i + 4 ] - attributes[ i + 3 ] ));
// ignore an element that otherwise generates a lot of noise in the logs
- SAL_WARN_IF(aQualifiedName != "x14ac:dyDescent", "xmloff", "unknown element " << aQualifiedName << " " << aNamespaceURI);
+ SAL_INFO("xmloff", "unknown element " << aQualifiedName << " " << aNamespaceURI);
}
void FastSaxParserImpl::callbackEndElement()