diff options
author | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-21 08:42:21 +0200 |
---|---|---|
committer | Noel Grandin <noel.grandin@collabora.co.uk> | 2021-12-21 09:38:12 +0100 |
commit | 45ca7938dbc146ffa39e1e759e20d8e0b60a3c85 (patch) | |
tree | f1af2bc443569b99056e95c99898d98db4f837b6 /xmloff | |
parent | 3807e43b3b1a05eb7d9c88988b41448cfc05015a (diff) |
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.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff')
-rw-r--r-- | xmloff/source/draw/shapeimport.cxx | 4 |
1 files changed, 2 insertions, 2 deletions
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()); } } |