xmloff/source/draw/shapeimport.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-)
New commits: commit 45ca7938dbc146ffa39e1e759e20d8e0b60a3c85 Author: Noel Grandin <noel.gran...@collabora.co.uk> AuthorDate: Tue Dec 21 08:42:21 2021 +0200 Commit: Noel Grandin <noel.gran...@collabora.co.uk> CommitDate: Tue Dec 21 09:38:12 2021 +0100 SAL_WARN->SAL_INFO this method is often speculatively called, so the warnings here are not that useful Change-Id: Idc9460b365dac955d1ced4c1bc2c9d2f49fbe540 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/127209 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk> diff --git a/xmloff/source/draw/shapeimport.cxx b/xmloff/source/draw/shapeimport.cxx index 76ac0075c564..bfbcf180feab 100644 --- a/xmloff/source/draw/shapeimport.cxx +++ b/xmloff/source/draw/shapeimport.cxx @@ -419,7 +419,7 @@ SvXMLShapeContext* XMLShapeImportHelper::CreateFrameChildContext( } // add other shapes here... default: - XMLOFF_WARN_UNKNOWN_ELEMENT("xmloff", nElement); + SAL_INFO("xmloff", "unknown element " << SvXMLImport::getPrefixAndNameFromToken(nElement)); break; } @@ -429,7 +429,7 @@ SvXMLShapeContext* XMLShapeImportHelper::CreateFrameChildContext( for(auto& aIter : *xCombinedAttrList) { if (!pContext->processAttribute( aIter )) - XMLOFF_WARN_UNKNOWN("xmloff", aIter); + SAL_INFO("xmloff", "unknown attribute " << SvXMLImport::getPrefixAndNameFromToken(aIter.getToken()) << " value=" << aIter.toString()); } }