sax/source/fastparser/fastparser.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 40753d5524d07f6bf2fbefdf90ceb3c8bd0910df
Author:     Noel Grandin <[email protected]>
AuthorDate: Thu Oct 20 12:47:39 2022 +0200
Commit:     Noel Grandin <[email protected]>
CommitDate: Thu Oct 20 13:47:26 2022 +0200

    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 <[email protected]>

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()

Reply via email to