xmloff/source/text/XMLTextFrameContext.cxx |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit b32c44f83ded245b0fc350aef350e1c55545e354
Author:     Noel Grandin <noelgran...@gmail.com>
AuthorDate: Sat Sep 10 13:40:59 2022 +0200
Commit:     Noel Grandin <noel.gran...@collabora.co.uk>
CommitDate: Sat Sep 10 20:58:13 2022 +0200

    WARN->INFO in XMLTextFrameContext_Impl
    
    Unknown attributes are not really a problem.
    
    Change-Id: Ie21d42c6489eae11c730eec272fc430c2d17f727
    Reviewed-on: https://gerrit.libreoffice.org/c/core/+/139750
    Tested-by: Jenkins
    Reviewed-by: Noel Grandin <noel.gran...@collabora.co.uk>

diff --git a/xmloff/source/text/XMLTextFrameContext.cxx 
b/xmloff/source/text/XMLTextFrameContext.cxx
index e7ae0f092150..cc3603d6e67f 100644
--- a/xmloff/source/text/XMLTextFrameContext.cxx
+++ b/xmloff/source/text/XMLTextFrameContext.cxx
@@ -1065,7 +1065,7 @@ XMLTextFrameContext_Impl::XMLTextFrameContext_Impl(
             sTblName = aIter.toString();
             break;
         default:
-            XMLOFF_WARN_UNKNOWN("xmloff", aIter);
+            SAL_INFO("xmloff", "unknown attribute " << 
SvXMLImport::getPrefixAndNameFromToken(aIter.getToken()) << " value=" << 
aIter.toString());
         }
     };
 

Reply via email to