summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorNoel Grandin <noel.grandin@collabora.co.uk>2023-09-05 12:16:15 +0200
committerNoel Grandin <noel.grandin@collabora.co.uk>2023-09-05 14:31:33 +0200
commit5a7c5151a5bab89c70984a9b04540c9e0244ecf0 (patch)
treee10890c39eb20e0a2b7ee3dd79fe3ee2b1c1a0d1 /xmloff
parent5fac945201bc381e0642218c380a6a72cfc6328c (diff)
SAL_WARN->SAL_INFO in XMLShapeImportHelper
these attributes are typically processed elsewhere, so this warning is not useful Change-Id: I2ebfe87e81e2959fbf25b17ed93a3bc80e1c6ab5 Reviewed-on: https://gerrit.libreoffice.org/c/core/+/156560 Tested-by: Jenkins Reviewed-by: Noel Grandin <noel.grandin@collabora.co.uk>
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/draw/shapeimport.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/draw/shapeimport.cxx b/xmloff/source/draw/shapeimport.cxx
index 45c1d22fcabb..5b0e6d101787 100644
--- a/xmloff/source/draw/shapeimport.cxx
+++ b/xmloff/source/draw/shapeimport.cxx
@@ -349,7 +349,7 @@ SvXMLShapeContext* XMLShapeImportHelper::CreateGroupChildContext(
for (auto &aIter : sax_fastparser::castToFastAttributeList( xAttrList ))
{
if (!pContext->processAttribute( aIter ))
- XMLOFF_WARN_UNKNOWN("xmloff", aIter);
+ XMLOFF_INFO_UNKNOWN("xmloff", aIter);
}
return pContext;
}