From 5a7c5151a5bab89c70984a9b04540c9e0244ecf0 Mon Sep 17 00:00:00 2001
From: Noel Grandin <noel.grandin@collabora.co.uk>
Date: Tue, 5 Sep 2023 12:16:15 +0200
Subject: 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>
---
 xmloff/source/draw/shapeimport.cxx | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'xmloff')

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;
 }
-- 
cgit