From 40753d5524d07f6bf2fbefdf90ceb3c8bd0910df Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Thu, 20 Oct 2022 12:47:39 +0200 Subject: 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 --- sax/source/fastparser/fastparser.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sax') 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() -- cgit