Kaydet (Commit) 1de8ddb7 authored tarafından Eike Rathke's avatar Eike Rathke

convert one freshly introduced DBG_ERRORFILE to SAL_WARN

üst 923934d0
......@@ -1900,15 +1900,9 @@ void LocaleDataWrapper::evaluateLocaleDataChecking()
if ( xLD.is() )
return xLD->getDateAcceptancePatterns( getLocale() );
}
catch ( Exception& e )
catch (const Exception& e)
{
#ifdef DBG_UTIL
rtl::OStringBuffer aMsg("getDateAcceptancePatterns: Exception caught\n");
aMsg.append(rtl::OUStringToOString(e.Message, RTL_TEXTENCODING_UTF8));
DBG_ERRORFILE(aMsg.getStr());
#else
(void)e;
#endif
SAL_WARN( "unotools.i18n", "getDateAcceptancePatterns: Exception caught " << e.Message );
}
return ::com::sun::star::uno::Sequence< ::rtl::OUString >(0);
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment