summaryrefslogtreecommitdiff
path: root/xmloff
diff options
context:
space:
mode:
authorMichael Stahl <mstahl@redhat.com>2015-11-18 13:41:09 +0100
committerMichael Stahl <mstahl@redhat.com>2015-11-18 14:30:37 +0100
commite3ad062229c95a5cf987d562613d01738bb7fd81 (patch)
tree23041c2478267a067e0bb8baea8280a316398480 /xmloff
parent2af0870fae82f1228886fbf37baa15d22ee4d2d1 (diff)
xmloff: legacy assert to SAL_INFO as it can only be triggered by
... invalid input files. Change-Id: I351302253169d32cd6a83ff63eb497d0069ab49b
Diffstat (limited to 'xmloff')
-rw-r--r--xmloff/source/core/i18nmap.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/xmloff/source/core/i18nmap.cxx b/xmloff/source/core/i18nmap.cxx
index 57c33a50bdb5..c297d2e6f9ea 100644
--- a/xmloff/source/core/i18nmap.cxx
+++ b/xmloff/source/core/i18nmap.cxx
@@ -26,7 +26,7 @@ bool SvI18NMap::Add( sal_uInt16 nKind, const OUString& rName,
{
SvI18NMapEntry_Key aKey(nKind, rName);
bool bIsNewInsertion = m_aMap.insert(SvI18NMap_Impl::value_type(aKey, rNewName)).second;
- DBG_ASSERT( bIsNewInsertion, "SvI18NMap::Add: item registered already" );
+ SAL_INFO_IF(!bIsNewInsertion, "xmloff.core", "SvI18NMap::Add: item with key \"" << rName << "\" registered already, likely invalid input file");
return bIsNewInsertion;
}